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 cc064f7f85..563e872a57 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 @@ -4122,6 +4122,236 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dependabot-repository-access-details" + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-repository-access-details" + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", @@ -107962,6 +108192,329 @@ ], "additionalProperties": false }, + "nullable-simple-repository": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "$ref": "#/components/schemas/simple-user" + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + }, + "dependabot-repository-access-details": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/nullable-simple-repository" + } + } + }, + "additionalProperties": false + }, "enterprise-team": { "title": "Enterprise Team", "description": "Group of enterprise owners and/or members", @@ -115618,329 +116171,6 @@ ], "additionalProperties": true }, - "nullable-simple-repository": { - "title": "Simple Repository", - "description": "A GitHub repository.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "example": 1296269, - "description": "A unique identifier of the repository." - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", - "description": "The GraphQL identifier of the repository." - }, - "name": { - "type": "string", - "example": "Hello-World", - "description": "The name of the repository." - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World", - "description": "The full, globally unique, name of the repository." - }, - "owner": { - "$ref": "#/components/schemas/simple-user" - }, - "private": { - "type": "boolean", - "description": "Whether the repository is private." - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World", - "description": "The URL to view the repository on GitHub.com." - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true, - "description": "The repository description." - }, - "fork": { - "type": "boolean", - "description": "Whether the repository is a fork." - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World", - "description": "The URL to get more information about the repository from the GitHub API." - }, - "archive_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "description": "A template for the API URL to download the repository as an archive." - }, - "assignees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "description": "A template for the API URL to list the available assignees for issues in the repository." - }, - "blobs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." - }, - "branches_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "description": "A template for the API URL to get information about branches in the repository." - }, - "collaborators_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "description": "A template for the API URL to get information about collaborators of the repository." - }, - "comments_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", - "description": "A template for the API URL to get information about comments on the repository." - }, - "commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "description": "A template for the API URL to get information about commits on the repository." - }, - "compare_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "description": "A template for the API URL to compare two commits or refs." - }, - "contents_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "description": "A template for the API URL to get the contents of the repository." - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/contributors", - "description": "A template for the API URL to list the contributors to the repository." - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/deployments", - "description": "The API URL to list the deployments of the repository." - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/downloads", - "description": "The API URL to list the downloads on the repository." - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/events", - "description": "The API URL to list the events of the repository." - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/forks", - "description": "The API URL to list the forks of the repository." - }, - "git_commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "description": "A template for the API URL to get information about Git commits of the repository." - }, - "git_refs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "description": "A template for the API URL to get information about Git refs of the repository." - }, - "git_tags_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", - "description": "A template for the API URL to get information about Git tags of the repository." - }, - "issue_comment_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "description": "A template for the API URL to get information about issue comments on the repository." - }, - "issue_events_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "description": "A template for the API URL to get information about issue events on the repository." - }, - "issues_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", - "description": "A template for the API URL to get information about issues on the repository." - }, - "keys_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "description": "A template for the API URL to get information about deploy keys on the repository." - }, - "labels_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", - "description": "A template for the API URL to get information about labels of the repository." - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/languages", - "description": "The API URL to get information about the languages of the repository." - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/merges", - "description": "The API URL to merge branches in the repository." - }, - "milestones_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "description": "A template for the API URL to get information about milestones of the repository." - }, - "notifications_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", - "description": "A template for the API URL to get information about notifications on the repository." - }, - "pulls_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "description": "A template for the API URL to get information about pull requests on the repository." - }, - "releases_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", - "description": "A template for the API URL to get information about releases on the repository." - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", - "description": "The API URL to list the stargazers on the repository." - }, - "statuses_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "description": "A template for the API URL to get information about statuses of a commit." - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", - "description": "The API URL to list the subscribers on the repository." - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscription", - "description": "The API URL to subscribe to notifications for this repository." - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/tags", - "description": "The API URL to get information about tags on the repository." - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/teams", - "description": "The API URL to list the teams on the repository." - }, - "trees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/hooks", - "description": "The API URL to list the hooks on the repository." - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url" - ], - "nullable": true - }, - "dependabot-repository-access-details": { - "title": "Dependabot Repository Access Details", - "description": "Information about repositories that Dependabot is able to access in an organization", - "type": "object", - "properties": { - "default_level": { - "type": "string", - "description": "The default repository access level for Dependabot updates.", - "enum": [ - "public", - "internal" - ], - "example": "internal", - "nullable": true - }, - "accessible_repositories": { - "type": "array", - "items": { - "$ref": "#/components/schemas/nullable-simple-repository" - } - } - }, - "additionalProperties": false - }, "organization-dependabot-secret": { "title": "Dependabot Secret for an Organization", "description": "Secrets for GitHub Dependabot for an organization.", @@ -288816,6 +289046,84 @@ } ] }, + "dependabot-repository-access-details": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + }, "enterprise-teams-items": { "value": [ { @@ -293241,84 +293549,6 @@ } ] }, - "dependabot-repository-access-details": { - "value": { - "default_level": "public", - "accessible_repositories": [ - { - "id": 123456, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", - "name": "example-repo", - "full_name": "octocat/example-repo", - "owner": { - "name": "octocat", - "email": "octo@github.com", - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", - "gravatar_id": 1, - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat/example-repo", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false, - "starred_at": "\"2020-07-09T00:17:55Z\"", - "user_view_type": "default" - }, - "private": false, - "html_url": "https://github.com/octocat/example-repo", - "description": "This is an example repository.", - "fork": false, - "url": "https://api.github.com/repos/octocat/example-repo", - "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", - "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", - "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", - "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", - "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", - "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", - "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", - "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", - "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", - "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", - "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", - "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", - "events_url": "https://api.github.com/repos/octocat/example-repo/events", - "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", - "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", - "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", - "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", - "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", - "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", - "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", - "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", - "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", - "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", - "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", - "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", - "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", - "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", - "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", - "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", - "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", - "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", - "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", - "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", - "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", - "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", - "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" - } - ] - } - }, "organization-dependabot-secret-paginated": { "value": { "total_count": 3, 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 e712cc85c7..8e3239f127 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 @@ -2991,6 +2991,179 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/dependabot-repository-access-details" + examples: + default: + "$ref": "#/components/examples/dependabot-repository-access-details" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -78434,6 +78607,298 @@ components: - fixed_at - repository additionalProperties: false + nullable-simple-repository: + title: Simple Repository + description: A GitHub repository. + type: object + properties: + id: + type: integer + format: int64 + example: 1296269 + description: A unique identifier of the repository. + node_id: + type: string + example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 + description: The GraphQL identifier of the repository. + name: + type: string + example: Hello-World + description: The name of the repository. + full_name: + type: string + example: octocat/Hello-World + description: The full, globally unique, name of the repository. + owner: + "$ref": "#/components/schemas/simple-user" + private: + type: boolean + description: Whether the repository is private. + html_url: + type: string + format: uri + example: https://github.com/octocat/Hello-World + description: The URL to view the repository on GitHub.com. + description: + type: string + example: This your first repo! + nullable: true + description: The repository description. + fork: + type: boolean + description: Whether the repository is a fork. + url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World + description: The URL to get more information about the repository from the + GitHub API. + archive_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} + description: A template for the API URL to download the repository as an + archive. + assignees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} + description: A template for the API URL to list the available assignees + for issues in the repository. + blobs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} + description: A template for the API URL to create or retrieve a raw Git + blob in the repository. + branches_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} + description: A template for the API URL to get information about branches + in the repository. + collaborators_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} + description: A template for the API URL to get information about collaborators + of the repository. + comments_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/comments{/number} + description: A template for the API URL to get information about comments + on the repository. + commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} + description: A template for the API URL to get information about commits + on the repository. + compare_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} + description: A template for the API URL to compare two commits or refs. + contents_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} + description: A template for the API URL to get the contents of the repository. + contributors_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/contributors + description: A template for the API URL to list the contributors to the + repository. + deployments_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/deployments + description: The API URL to list the deployments of the repository. + downloads_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/downloads + description: The API URL to list the downloads on the repository. + events_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/events + description: The API URL to list the events of the repository. + forks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/forks + description: The API URL to list the forks of the repository. + git_commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} + description: A template for the API URL to get information about Git commits + of the repository. + git_refs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} + description: A template for the API URL to get information about Git refs + of the repository. + git_tags_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} + description: A template for the API URL to get information about Git tags + of the repository. + issue_comment_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} + description: A template for the API URL to get information about issue comments + on the repository. + issue_events_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} + description: A template for the API URL to get information about issue events + on the repository. + issues_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues{/number} + description: A template for the API URL to get information about issues + on the repository. + keys_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} + description: A template for the API URL to get information about deploy + keys on the repository. + labels_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/labels{/name} + description: A template for the API URL to get information about labels + of the repository. + languages_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/languages + description: The API URL to get information about the languages of the repository. + merges_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/merges + description: The API URL to merge branches in the repository. + milestones_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} + description: A template for the API URL to get information about milestones + of the repository. + notifications_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} + description: A template for the API URL to get information about notifications + on the repository. + pulls_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} + description: A template for the API URL to get information about pull requests + on the repository. + releases_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/releases{/id} + description: A template for the API URL to get information about releases + on the repository. + stargazers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/stargazers + description: The API URL to list the stargazers on the repository. + statuses_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} + description: A template for the API URL to get information about statuses + of a commit. + subscribers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscribers + description: The API URL to list the subscribers on the repository. + subscription_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscription + description: The API URL to subscribe to notifications for this repository. + tags_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/tags + description: The API URL to get information about tags on the repository. + teams_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/teams + description: The API URL to list the teams on the repository. + trees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} + description: A template for the API URL to create or retrieve a raw Git + tree of the repository. + hooks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/hooks + description: The API URL to list the hooks on the repository. + required: + - archive_url + - assignees_url + - blobs_url + - branches_url + - collaborators_url + - comments_url + - commits_url + - compare_url + - contents_url + - contributors_url + - deployments_url + - description + - downloads_url + - events_url + - fork + - forks_url + - full_name + - git_commits_url + - git_refs_url + - git_tags_url + - hooks_url + - html_url + - id + - node_id + - issue_comment_url + - issue_events_url + - issues_url + - keys_url + - labels_url + - languages_url + - merges_url + - milestones_url + - name + - notifications_url + - owner + - private + - pulls_url + - releases_url + - stargazers_url + - statuses_url + - subscribers_url + - subscription_url + - tags_url + - teams_url + - trees_url + - url + nullable: true + dependabot-repository-access-details: + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able to access + in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + "$ref": "#/components/schemas/nullable-simple-repository" + additionalProperties: false enterprise-team: title: Enterprise Team description: Group of enterprise owners and/or members @@ -84459,298 +84924,6 @@ components: required: - date additionalProperties: true - nullable-simple-repository: - title: Simple Repository - description: A GitHub repository. - type: object - properties: - id: - type: integer - format: int64 - example: 1296269 - description: A unique identifier of the repository. - node_id: - type: string - example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 - description: The GraphQL identifier of the repository. - name: - type: string - example: Hello-World - description: The name of the repository. - full_name: - type: string - example: octocat/Hello-World - description: The full, globally unique, name of the repository. - owner: - "$ref": "#/components/schemas/simple-user" - private: - type: boolean - description: Whether the repository is private. - html_url: - type: string - format: uri - example: https://github.com/octocat/Hello-World - description: The URL to view the repository on GitHub.com. - description: - type: string - example: This your first repo! - nullable: true - description: The repository description. - fork: - type: boolean - description: Whether the repository is a fork. - url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World - description: The URL to get more information about the repository from the - GitHub API. - archive_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} - description: A template for the API URL to download the repository as an - archive. - assignees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} - description: A template for the API URL to list the available assignees - for issues in the repository. - blobs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} - description: A template for the API URL to create or retrieve a raw Git - blob in the repository. - branches_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} - description: A template for the API URL to get information about branches - in the repository. - collaborators_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} - description: A template for the API URL to get information about collaborators - of the repository. - comments_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/comments{/number} - description: A template for the API URL to get information about comments - on the repository. - commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} - description: A template for the API URL to get information about commits - on the repository. - compare_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} - description: A template for the API URL to compare two commits or refs. - contents_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} - description: A template for the API URL to get the contents of the repository. - contributors_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/contributors - description: A template for the API URL to list the contributors to the - repository. - deployments_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/deployments - description: The API URL to list the deployments of the repository. - downloads_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/downloads - description: The API URL to list the downloads on the repository. - events_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/events - description: The API URL to list the events of the repository. - forks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/forks - description: The API URL to list the forks of the repository. - git_commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} - description: A template for the API URL to get information about Git commits - of the repository. - git_refs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} - description: A template for the API URL to get information about Git refs - of the repository. - git_tags_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} - description: A template for the API URL to get information about Git tags - of the repository. - issue_comment_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} - description: A template for the API URL to get information about issue comments - on the repository. - issue_events_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} - description: A template for the API URL to get information about issue events - on the repository. - issues_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues{/number} - description: A template for the API URL to get information about issues - on the repository. - keys_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} - description: A template for the API URL to get information about deploy - keys on the repository. - labels_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/labels{/name} - description: A template for the API URL to get information about labels - of the repository. - languages_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/languages - description: The API URL to get information about the languages of the repository. - merges_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/merges - description: The API URL to merge branches in the repository. - milestones_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} - description: A template for the API URL to get information about milestones - of the repository. - notifications_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} - description: A template for the API URL to get information about notifications - on the repository. - pulls_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} - description: A template for the API URL to get information about pull requests - on the repository. - releases_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/releases{/id} - description: A template for the API URL to get information about releases - on the repository. - stargazers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/stargazers - description: The API URL to list the stargazers on the repository. - statuses_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} - description: A template for the API URL to get information about statuses - of a commit. - subscribers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscribers - description: The API URL to list the subscribers on the repository. - subscription_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscription - description: The API URL to subscribe to notifications for this repository. - tags_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/tags - description: The API URL to get information about tags on the repository. - teams_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/teams - description: The API URL to list the teams on the repository. - trees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} - description: A template for the API URL to create or retrieve a raw Git - tree of the repository. - hooks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/hooks - description: The API URL to list the hooks on the repository. - required: - - archive_url - - assignees_url - - blobs_url - - branches_url - - collaborators_url - - comments_url - - commits_url - - compare_url - - contents_url - - contributors_url - - deployments_url - - description - - downloads_url - - events_url - - fork - - forks_url - - full_name - - git_commits_url - - git_refs_url - - git_tags_url - - hooks_url - - html_url - - id - - node_id - - issue_comment_url - - issue_events_url - - issues_url - - keys_url - - labels_url - - languages_url - - merges_url - - milestones_url - - name - - notifications_url - - owner - - private - - pulls_url - - releases_url - - stargazers_url - - statuses_url - - subscribers_url - - subscription_url - - tags_url - - teams_url - - trees_url - - url - nullable: true - dependabot-repository-access-details: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able to access - in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - "$ref": "#/components/schemas/nullable-simple-repository" - additionalProperties: false organization-dependabot-secret: title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. @@ -216111,6 +216284,78 @@ components: tags_url: https://api.github.com/repos/octo-org/hello-world/tags teams_url: https://api.github.com/repos/octo-org/hello-world/teams trees_url: https://api.github.com/repos/octo-org/hello-world/git/trees{/sha} + dependabot-repository-access-details: + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks enterprise-teams-items: value: - id: 1 @@ -219861,78 +220106,6 @@ components: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - dependabot-repository-access-details: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks organization-dependabot-secret-paginated: value: total_count: 3 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 ca0d6e928a..04e37aebba 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 @@ -4122,6 +4122,236 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dependabot-repository-access-details" + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-repository-access-details" + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", @@ -107770,6 +108000,329 @@ ], "additionalProperties": false }, + "nullable-simple-repository": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "$ref": "#/components/schemas/simple-user" + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + }, + "dependabot-repository-access-details": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/nullable-simple-repository" + } + } + }, + "additionalProperties": false + }, "enterprise-team": { "title": "Enterprise Team", "description": "Group of enterprise owners and/or members", @@ -115122,329 +115675,6 @@ ], "additionalProperties": true }, - "nullable-simple-repository": { - "title": "Simple Repository", - "description": "A GitHub repository.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "example": 1296269, - "description": "A unique identifier of the repository." - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", - "description": "The GraphQL identifier of the repository." - }, - "name": { - "type": "string", - "example": "Hello-World", - "description": "The name of the repository." - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World", - "description": "The full, globally unique, name of the repository." - }, - "owner": { - "$ref": "#/components/schemas/simple-user" - }, - "private": { - "type": "boolean", - "description": "Whether the repository is private." - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World", - "description": "The URL to view the repository on GitHub.com." - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true, - "description": "The repository description." - }, - "fork": { - "type": "boolean", - "description": "Whether the repository is a fork." - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World", - "description": "The URL to get more information about the repository from the GitHub API." - }, - "archive_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "description": "A template for the API URL to download the repository as an archive." - }, - "assignees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "description": "A template for the API URL to list the available assignees for issues in the repository." - }, - "blobs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." - }, - "branches_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "description": "A template for the API URL to get information about branches in the repository." - }, - "collaborators_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "description": "A template for the API URL to get information about collaborators of the repository." - }, - "comments_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", - "description": "A template for the API URL to get information about comments on the repository." - }, - "commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "description": "A template for the API URL to get information about commits on the repository." - }, - "compare_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "description": "A template for the API URL to compare two commits or refs." - }, - "contents_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "description": "A template for the API URL to get the contents of the repository." - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/contributors", - "description": "A template for the API URL to list the contributors to the repository." - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/deployments", - "description": "The API URL to list the deployments of the repository." - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/downloads", - "description": "The API URL to list the downloads on the repository." - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/events", - "description": "The API URL to list the events of the repository." - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/forks", - "description": "The API URL to list the forks of the repository." - }, - "git_commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "description": "A template for the API URL to get information about Git commits of the repository." - }, - "git_refs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "description": "A template for the API URL to get information about Git refs of the repository." - }, - "git_tags_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", - "description": "A template for the API URL to get information about Git tags of the repository." - }, - "issue_comment_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "description": "A template for the API URL to get information about issue comments on the repository." - }, - "issue_events_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "description": "A template for the API URL to get information about issue events on the repository." - }, - "issues_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", - "description": "A template for the API URL to get information about issues on the repository." - }, - "keys_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "description": "A template for the API URL to get information about deploy keys on the repository." - }, - "labels_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", - "description": "A template for the API URL to get information about labels of the repository." - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/languages", - "description": "The API URL to get information about the languages of the repository." - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/merges", - "description": "The API URL to merge branches in the repository." - }, - "milestones_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "description": "A template for the API URL to get information about milestones of the repository." - }, - "notifications_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", - "description": "A template for the API URL to get information about notifications on the repository." - }, - "pulls_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "description": "A template for the API URL to get information about pull requests on the repository." - }, - "releases_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", - "description": "A template for the API URL to get information about releases on the repository." - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", - "description": "The API URL to list the stargazers on the repository." - }, - "statuses_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "description": "A template for the API URL to get information about statuses of a commit." - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", - "description": "The API URL to list the subscribers on the repository." - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscription", - "description": "The API URL to subscribe to notifications for this repository." - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/tags", - "description": "The API URL to get information about tags on the repository." - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/teams", - "description": "The API URL to list the teams on the repository." - }, - "trees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/hooks", - "description": "The API URL to list the hooks on the repository." - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url" - ], - "nullable": true - }, - "dependabot-repository-access-details": { - "title": "Dependabot Repository Access Details", - "description": "Information about repositories that Dependabot is able to access in an organization", - "type": "object", - "properties": { - "default_level": { - "type": "string", - "description": "The default repository access level for Dependabot updates.", - "enum": [ - "public", - "internal" - ], - "example": "internal", - "nullable": true - }, - "accessible_repositories": { - "type": "array", - "items": { - "$ref": "#/components/schemas/nullable-simple-repository" - } - } - }, - "additionalProperties": false - }, "organization-dependabot-secret": { "title": "Dependabot Secret for an Organization", "description": "Secrets for GitHub Dependabot for an organization.", @@ -288072,6 +288302,84 @@ } ] }, + "dependabot-repository-access-details": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + }, "enterprise-teams-items": { "value": [ { @@ -292495,84 +292803,6 @@ } ] }, - "dependabot-repository-access-details": { - "value": { - "default_level": "public", - "accessible_repositories": [ - { - "id": 123456, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", - "name": "example-repo", - "full_name": "octocat/example-repo", - "owner": { - "name": "octocat", - "email": "octo@github.com", - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", - "gravatar_id": 1, - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat/example-repo", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false, - "starred_at": "\"2020-07-09T00:17:55Z\"", - "user_view_type": "default" - }, - "private": false, - "html_url": "https://github.com/octocat/example-repo", - "description": "This is an example repository.", - "fork": false, - "url": "https://api.github.com/repos/octocat/example-repo", - "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", - "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", - "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", - "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", - "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", - "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", - "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", - "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", - "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", - "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", - "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", - "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", - "events_url": "https://api.github.com/repos/octocat/example-repo/events", - "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", - "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", - "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", - "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", - "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", - "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", - "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", - "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", - "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", - "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", - "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", - "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", - "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", - "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", - "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", - "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", - "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", - "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", - "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", - "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", - "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", - "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", - "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" - } - ] - } - }, "organization-dependabot-secret-paginated": { "value": { "total_count": 3, 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 5b9f03cae3..7f63c7738c 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 @@ -2991,6 +2991,179 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/dependabot-repository-access-details" + examples: + default: + "$ref": "#/components/examples/dependabot-repository-access-details" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -78272,6 +78445,298 @@ components: - fixed_at - repository additionalProperties: false + nullable-simple-repository: + title: Simple Repository + description: A GitHub repository. + type: object + properties: + id: + type: integer + format: int64 + example: 1296269 + description: A unique identifier of the repository. + node_id: + type: string + example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 + description: The GraphQL identifier of the repository. + name: + type: string + example: Hello-World + description: The name of the repository. + full_name: + type: string + example: octocat/Hello-World + description: The full, globally unique, name of the repository. + owner: + "$ref": "#/components/schemas/simple-user" + private: + type: boolean + description: Whether the repository is private. + html_url: + type: string + format: uri + example: https://github.com/octocat/Hello-World + description: The URL to view the repository on GitHub.com. + description: + type: string + example: This your first repo! + nullable: true + description: The repository description. + fork: + type: boolean + description: Whether the repository is a fork. + url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World + description: The URL to get more information about the repository from the + GitHub API. + archive_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} + description: A template for the API URL to download the repository as an + archive. + assignees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} + description: A template for the API URL to list the available assignees + for issues in the repository. + blobs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} + description: A template for the API URL to create or retrieve a raw Git + blob in the repository. + branches_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} + description: A template for the API URL to get information about branches + in the repository. + collaborators_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} + description: A template for the API URL to get information about collaborators + of the repository. + comments_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/comments{/number} + description: A template for the API URL to get information about comments + on the repository. + commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} + description: A template for the API URL to get information about commits + on the repository. + compare_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} + description: A template for the API URL to compare two commits or refs. + contents_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} + description: A template for the API URL to get the contents of the repository. + contributors_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/contributors + description: A template for the API URL to list the contributors to the + repository. + deployments_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/deployments + description: The API URL to list the deployments of the repository. + downloads_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/downloads + description: The API URL to list the downloads on the repository. + events_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/events + description: The API URL to list the events of the repository. + forks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/forks + description: The API URL to list the forks of the repository. + git_commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} + description: A template for the API URL to get information about Git commits + of the repository. + git_refs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} + description: A template for the API URL to get information about Git refs + of the repository. + git_tags_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} + description: A template for the API URL to get information about Git tags + of the repository. + issue_comment_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} + description: A template for the API URL to get information about issue comments + on the repository. + issue_events_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} + description: A template for the API URL to get information about issue events + on the repository. + issues_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues{/number} + description: A template for the API URL to get information about issues + on the repository. + keys_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} + description: A template for the API URL to get information about deploy + keys on the repository. + labels_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/labels{/name} + description: A template for the API URL to get information about labels + of the repository. + languages_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/languages + description: The API URL to get information about the languages of the repository. + merges_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/merges + description: The API URL to merge branches in the repository. + milestones_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} + description: A template for the API URL to get information about milestones + of the repository. + notifications_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} + description: A template for the API URL to get information about notifications + on the repository. + pulls_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} + description: A template for the API URL to get information about pull requests + on the repository. + releases_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/releases{/id} + description: A template for the API URL to get information about releases + on the repository. + stargazers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/stargazers + description: The API URL to list the stargazers on the repository. + statuses_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} + description: A template for the API URL to get information about statuses + of a commit. + subscribers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscribers + description: The API URL to list the subscribers on the repository. + subscription_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscription + description: The API URL to subscribe to notifications for this repository. + tags_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/tags + description: The API URL to get information about tags on the repository. + teams_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/teams + description: The API URL to list the teams on the repository. + trees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} + description: A template for the API URL to create or retrieve a raw Git + tree of the repository. + hooks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/hooks + description: The API URL to list the hooks on the repository. + required: + - archive_url + - assignees_url + - blobs_url + - branches_url + - collaborators_url + - comments_url + - commits_url + - compare_url + - contents_url + - contributors_url + - deployments_url + - description + - downloads_url + - events_url + - fork + - forks_url + - full_name + - git_commits_url + - git_refs_url + - git_tags_url + - hooks_url + - html_url + - id + - node_id + - issue_comment_url + - issue_events_url + - issues_url + - keys_url + - labels_url + - languages_url + - merges_url + - milestones_url + - name + - notifications_url + - owner + - private + - pulls_url + - releases_url + - stargazers_url + - statuses_url + - subscribers_url + - subscription_url + - tags_url + - teams_url + - trees_url + - url + nullable: true + dependabot-repository-access-details: + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able to access + in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + "$ref": "#/components/schemas/nullable-simple-repository" + additionalProperties: false enterprise-team: title: Enterprise Team description: Group of enterprise owners and/or members @@ -84068,298 +84533,6 @@ components: required: - date additionalProperties: true - nullable-simple-repository: - title: Simple Repository - description: A GitHub repository. - type: object - properties: - id: - type: integer - format: int64 - example: 1296269 - description: A unique identifier of the repository. - node_id: - type: string - example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 - description: The GraphQL identifier of the repository. - name: - type: string - example: Hello-World - description: The name of the repository. - full_name: - type: string - example: octocat/Hello-World - description: The full, globally unique, name of the repository. - owner: - "$ref": "#/components/schemas/simple-user" - private: - type: boolean - description: Whether the repository is private. - html_url: - type: string - format: uri - example: https://github.com/octocat/Hello-World - description: The URL to view the repository on GitHub.com. - description: - type: string - example: This your first repo! - nullable: true - description: The repository description. - fork: - type: boolean - description: Whether the repository is a fork. - url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World - description: The URL to get more information about the repository from the - GitHub API. - archive_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} - description: A template for the API URL to download the repository as an - archive. - assignees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} - description: A template for the API URL to list the available assignees - for issues in the repository. - blobs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} - description: A template for the API URL to create or retrieve a raw Git - blob in the repository. - branches_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} - description: A template for the API URL to get information about branches - in the repository. - collaborators_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} - description: A template for the API URL to get information about collaborators - of the repository. - comments_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/comments{/number} - description: A template for the API URL to get information about comments - on the repository. - commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} - description: A template for the API URL to get information about commits - on the repository. - compare_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} - description: A template for the API URL to compare two commits or refs. - contents_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} - description: A template for the API URL to get the contents of the repository. - contributors_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/contributors - description: A template for the API URL to list the contributors to the - repository. - deployments_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/deployments - description: The API URL to list the deployments of the repository. - downloads_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/downloads - description: The API URL to list the downloads on the repository. - events_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/events - description: The API URL to list the events of the repository. - forks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/forks - description: The API URL to list the forks of the repository. - git_commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} - description: A template for the API URL to get information about Git commits - of the repository. - git_refs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} - description: A template for the API URL to get information about Git refs - of the repository. - git_tags_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} - description: A template for the API URL to get information about Git tags - of the repository. - issue_comment_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} - description: A template for the API URL to get information about issue comments - on the repository. - issue_events_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} - description: A template for the API URL to get information about issue events - on the repository. - issues_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues{/number} - description: A template for the API URL to get information about issues - on the repository. - keys_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} - description: A template for the API URL to get information about deploy - keys on the repository. - labels_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/labels{/name} - description: A template for the API URL to get information about labels - of the repository. - languages_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/languages - description: The API URL to get information about the languages of the repository. - merges_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/merges - description: The API URL to merge branches in the repository. - milestones_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} - description: A template for the API URL to get information about milestones - of the repository. - notifications_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} - description: A template for the API URL to get information about notifications - on the repository. - pulls_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} - description: A template for the API URL to get information about pull requests - on the repository. - releases_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/releases{/id} - description: A template for the API URL to get information about releases - on the repository. - stargazers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/stargazers - description: The API URL to list the stargazers on the repository. - statuses_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} - description: A template for the API URL to get information about statuses - of a commit. - subscribers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscribers - description: The API URL to list the subscribers on the repository. - subscription_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscription - description: The API URL to subscribe to notifications for this repository. - tags_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/tags - description: The API URL to get information about tags on the repository. - teams_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/teams - description: The API URL to list the teams on the repository. - trees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} - description: A template for the API URL to create or retrieve a raw Git - tree of the repository. - hooks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/hooks - description: The API URL to list the hooks on the repository. - required: - - archive_url - - assignees_url - - blobs_url - - branches_url - - collaborators_url - - comments_url - - commits_url - - compare_url - - contents_url - - contributors_url - - deployments_url - - description - - downloads_url - - events_url - - fork - - forks_url - - full_name - - git_commits_url - - git_refs_url - - git_tags_url - - hooks_url - - html_url - - id - - node_id - - issue_comment_url - - issue_events_url - - issues_url - - keys_url - - labels_url - - languages_url - - merges_url - - milestones_url - - name - - notifications_url - - owner - - private - - pulls_url - - releases_url - - stargazers_url - - statuses_url - - subscribers_url - - subscription_url - - tags_url - - teams_url - - trees_url - - url - nullable: true - dependabot-repository-access-details: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able to access - in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - "$ref": "#/components/schemas/nullable-simple-repository" - additionalProperties: false organization-dependabot-secret: title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. @@ -215441,6 +215614,78 @@ components: tags_url: https://api.github.com/repos/octo-org/hello-world/tags teams_url: https://api.github.com/repos/octo-org/hello-world/teams trees_url: https://api.github.com/repos/octo-org/hello-world/git/trees{/sha} + dependabot-repository-access-details: + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks enterprise-teams-items: value: - id: 1 @@ -219189,78 +219434,6 @@ components: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - dependabot-repository-access-details: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks organization-dependabot-secret-paginated: value: total_count: 3 diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 2be99c03f4..ea8930c868 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -4136,6 +4136,236 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/dependabot-repository-access-details" + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-repository-access-details" + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", @@ -108568,6 +108798,329 @@ ], "additionalProperties": false }, + "nullable-simple-repository": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "$ref": "#/components/schemas/simple-user" + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + }, + "dependabot-repository-access-details": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "$ref": "#/components/schemas/nullable-simple-repository" + } + } + }, + "additionalProperties": false + }, "enterprise-team": { "title": "Enterprise Team", "description": "Group of enterprise owners and/or members", @@ -116365,329 +116918,6 @@ ], "additionalProperties": true }, - "nullable-simple-repository": { - "title": "Simple Repository", - "description": "A GitHub repository.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "example": 1296269, - "description": "A unique identifier of the repository." - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", - "description": "The GraphQL identifier of the repository." - }, - "name": { - "type": "string", - "example": "Hello-World", - "description": "The name of the repository." - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World", - "description": "The full, globally unique, name of the repository." - }, - "owner": { - "$ref": "#/components/schemas/simple-user" - }, - "private": { - "type": "boolean", - "description": "Whether the repository is private." - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World", - "description": "The URL to view the repository on GitHub.com." - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true, - "description": "The repository description." - }, - "fork": { - "type": "boolean", - "description": "Whether the repository is a fork." - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World", - "description": "The URL to get more information about the repository from the GitHub API." - }, - "archive_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "description": "A template for the API URL to download the repository as an archive." - }, - "assignees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "description": "A template for the API URL to list the available assignees for issues in the repository." - }, - "blobs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." - }, - "branches_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "description": "A template for the API URL to get information about branches in the repository." - }, - "collaborators_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "description": "A template for the API URL to get information about collaborators of the repository." - }, - "comments_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", - "description": "A template for the API URL to get information about comments on the repository." - }, - "commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "description": "A template for the API URL to get information about commits on the repository." - }, - "compare_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "description": "A template for the API URL to compare two commits or refs." - }, - "contents_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "description": "A template for the API URL to get the contents of the repository." - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/contributors", - "description": "A template for the API URL to list the contributors to the repository." - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/deployments", - "description": "The API URL to list the deployments of the repository." - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/downloads", - "description": "The API URL to list the downloads on the repository." - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/events", - "description": "The API URL to list the events of the repository." - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/forks", - "description": "The API URL to list the forks of the repository." - }, - "git_commits_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "description": "A template for the API URL to get information about Git commits of the repository." - }, - "git_refs_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "description": "A template for the API URL to get information about Git refs of the repository." - }, - "git_tags_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", - "description": "A template for the API URL to get information about Git tags of the repository." - }, - "issue_comment_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "description": "A template for the API URL to get information about issue comments on the repository." - }, - "issue_events_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "description": "A template for the API URL to get information about issue events on the repository." - }, - "issues_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", - "description": "A template for the API URL to get information about issues on the repository." - }, - "keys_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "description": "A template for the API URL to get information about deploy keys on the repository." - }, - "labels_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", - "description": "A template for the API URL to get information about labels of the repository." - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/languages", - "description": "The API URL to get information about the languages of the repository." - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/merges", - "description": "The API URL to merge branches in the repository." - }, - "milestones_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "description": "A template for the API URL to get information about milestones of the repository." - }, - "notifications_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", - "description": "A template for the API URL to get information about notifications on the repository." - }, - "pulls_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "description": "A template for the API URL to get information about pull requests on the repository." - }, - "releases_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", - "description": "A template for the API URL to get information about releases on the repository." - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", - "description": "The API URL to list the stargazers on the repository." - }, - "statuses_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "description": "A template for the API URL to get information about statuses of a commit." - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", - "description": "The API URL to list the subscribers on the repository." - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/subscription", - "description": "The API URL to subscribe to notifications for this repository." - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/tags", - "description": "The API URL to get information about tags on the repository." - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/teams", - "description": "The API URL to list the teams on the repository." - }, - "trees_url": { - "type": "string", - "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", - "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/hooks", - "description": "The API URL to list the hooks on the repository." - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url" - ], - "nullable": true - }, - "dependabot-repository-access-details": { - "title": "Dependabot Repository Access Details", - "description": "Information about repositories that Dependabot is able to access in an organization", - "type": "object", - "properties": { - "default_level": { - "type": "string", - "description": "The default repository access level for Dependabot updates.", - "enum": [ - "public", - "internal" - ], - "example": "internal", - "nullable": true - }, - "accessible_repositories": { - "type": "array", - "items": { - "$ref": "#/components/schemas/nullable-simple-repository" - } - } - }, - "additionalProperties": false - }, "organization-dependabot-secret": { "title": "Dependabot Secret for an Organization", "description": "Secrets for GitHub Dependabot for an organization.", @@ -290923,6 +291153,84 @@ } ] }, + "dependabot-repository-access-details": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + }, "enterprise-teams-items": { "value": [ { @@ -295371,84 +295679,6 @@ } ] }, - "dependabot-repository-access-details": { - "value": { - "default_level": "public", - "accessible_repositories": [ - { - "id": 123456, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", - "name": "example-repo", - "full_name": "octocat/example-repo", - "owner": { - "name": "octocat", - "email": "octo@github.com", - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", - "gravatar_id": 1, - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat/example-repo", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false, - "starred_at": "\"2020-07-09T00:17:55Z\"", - "user_view_type": "default" - }, - "private": false, - "html_url": "https://github.com/octocat/example-repo", - "description": "This is an example repository.", - "fork": false, - "url": "https://api.github.com/repos/octocat/example-repo", - "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", - "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", - "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", - "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", - "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", - "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", - "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", - "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", - "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", - "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", - "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", - "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", - "events_url": "https://api.github.com/repos/octocat/example-repo/events", - "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", - "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", - "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", - "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", - "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", - "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", - "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", - "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", - "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", - "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", - "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", - "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", - "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", - "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", - "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", - "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", - "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", - "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", - "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", - "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", - "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", - "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", - "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" - } - ] - } - }, "organization-dependabot-secret-paginated": { "value": { "total_count": 3, diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 39e4b63ca7..600adf8f35 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -2999,6 +2999,179 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/dependabot-repository-access-details" + examples: + default: + "$ref": "#/components/examples/dependabot-repository-access-details" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -78829,6 +79002,298 @@ components: - fixed_at - repository additionalProperties: false + nullable-simple-repository: + title: Simple Repository + description: A GitHub repository. + type: object + properties: + id: + type: integer + format: int64 + example: 1296269 + description: A unique identifier of the repository. + node_id: + type: string + example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 + description: The GraphQL identifier of the repository. + name: + type: string + example: Hello-World + description: The name of the repository. + full_name: + type: string + example: octocat/Hello-World + description: The full, globally unique, name of the repository. + owner: + "$ref": "#/components/schemas/simple-user" + private: + type: boolean + description: Whether the repository is private. + html_url: + type: string + format: uri + example: https://github.com/octocat/Hello-World + description: The URL to view the repository on GitHub.com. + description: + type: string + example: This your first repo! + nullable: true + description: The repository description. + fork: + type: boolean + description: Whether the repository is a fork. + url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World + description: The URL to get more information about the repository from the + GitHub API. + archive_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} + description: A template for the API URL to download the repository as an + archive. + assignees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} + description: A template for the API URL to list the available assignees + for issues in the repository. + blobs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} + description: A template for the API URL to create or retrieve a raw Git + blob in the repository. + branches_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} + description: A template for the API URL to get information about branches + in the repository. + collaborators_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} + description: A template for the API URL to get information about collaborators + of the repository. + comments_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/comments{/number} + description: A template for the API URL to get information about comments + on the repository. + commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} + description: A template for the API URL to get information about commits + on the repository. + compare_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} + description: A template for the API URL to compare two commits or refs. + contents_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} + description: A template for the API URL to get the contents of the repository. + contributors_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/contributors + description: A template for the API URL to list the contributors to the + repository. + deployments_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/deployments + description: The API URL to list the deployments of the repository. + downloads_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/downloads + description: The API URL to list the downloads on the repository. + events_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/events + description: The API URL to list the events of the repository. + forks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/forks + description: The API URL to list the forks of the repository. + git_commits_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} + description: A template for the API URL to get information about Git commits + of the repository. + git_refs_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} + description: A template for the API URL to get information about Git refs + of the repository. + git_tags_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} + description: A template for the API URL to get information about Git tags + of the repository. + issue_comment_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} + description: A template for the API URL to get information about issue comments + on the repository. + issue_events_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} + description: A template for the API URL to get information about issue events + on the repository. + issues_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/issues{/number} + description: A template for the API URL to get information about issues + on the repository. + keys_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} + description: A template for the API URL to get information about deploy + keys on the repository. + labels_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/labels{/name} + description: A template for the API URL to get information about labels + of the repository. + languages_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/languages + description: The API URL to get information about the languages of the repository. + merges_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/merges + description: The API URL to merge branches in the repository. + milestones_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} + description: A template for the API URL to get information about milestones + of the repository. + notifications_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} + description: A template for the API URL to get information about notifications + on the repository. + pulls_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} + description: A template for the API URL to get information about pull requests + on the repository. + releases_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/releases{/id} + description: A template for the API URL to get information about releases + on the repository. + stargazers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/stargazers + description: The API URL to list the stargazers on the repository. + statuses_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} + description: A template for the API URL to get information about statuses + of a commit. + subscribers_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscribers + description: The API URL to list the subscribers on the repository. + subscription_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/subscription + description: The API URL to subscribe to notifications for this repository. + tags_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/tags + description: The API URL to get information about tags on the repository. + teams_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/teams + description: The API URL to list the teams on the repository. + trees_url: + type: string + example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} + description: A template for the API URL to create or retrieve a raw Git + tree of the repository. + hooks_url: + type: string + format: uri + example: https://api.github.com/repos/octocat/Hello-World/hooks + description: The API URL to list the hooks on the repository. + required: + - archive_url + - assignees_url + - blobs_url + - branches_url + - collaborators_url + - comments_url + - commits_url + - compare_url + - contents_url + - contributors_url + - deployments_url + - description + - downloads_url + - events_url + - fork + - forks_url + - full_name + - git_commits_url + - git_refs_url + - git_tags_url + - hooks_url + - html_url + - id + - node_id + - issue_comment_url + - issue_events_url + - issues_url + - keys_url + - labels_url + - languages_url + - merges_url + - milestones_url + - name + - notifications_url + - owner + - private + - pulls_url + - releases_url + - stargazers_url + - statuses_url + - subscribers_url + - subscription_url + - tags_url + - teams_url + - trees_url + - url + nullable: true + dependabot-repository-access-details: + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able to access + in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + "$ref": "#/components/schemas/nullable-simple-repository" + additionalProperties: false enterprise-team: title: Enterprise Team description: Group of enterprise owners and/or members @@ -84946,298 +85411,6 @@ components: required: - date additionalProperties: true - nullable-simple-repository: - title: Simple Repository - description: A GitHub repository. - type: object - properties: - id: - type: integer - format: int64 - example: 1296269 - description: A unique identifier of the repository. - node_id: - type: string - example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 - description: The GraphQL identifier of the repository. - name: - type: string - example: Hello-World - description: The name of the repository. - full_name: - type: string - example: octocat/Hello-World - description: The full, globally unique, name of the repository. - owner: - "$ref": "#/components/schemas/simple-user" - private: - type: boolean - description: Whether the repository is private. - html_url: - type: string - format: uri - example: https://github.com/octocat/Hello-World - description: The URL to view the repository on GitHub.com. - description: - type: string - example: This your first repo! - nullable: true - description: The repository description. - fork: - type: boolean - description: Whether the repository is a fork. - url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World - description: The URL to get more information about the repository from the - GitHub API. - archive_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} - description: A template for the API URL to download the repository as an - archive. - assignees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/assignees{/user} - description: A template for the API URL to list the available assignees - for issues in the repository. - blobs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} - description: A template for the API URL to create or retrieve a raw Git - blob in the repository. - branches_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/branches{/branch} - description: A template for the API URL to get information about branches - in the repository. - collaborators_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} - description: A template for the API URL to get information about collaborators - of the repository. - comments_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/comments{/number} - description: A template for the API URL to get information about comments - on the repository. - commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/commits{/sha} - description: A template for the API URL to get information about commits - on the repository. - compare_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} - description: A template for the API URL to compare two commits or refs. - contents_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/contents/{+path} - description: A template for the API URL to get the contents of the repository. - contributors_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/contributors - description: A template for the API URL to list the contributors to the - repository. - deployments_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/deployments - description: The API URL to list the deployments of the repository. - downloads_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/downloads - description: The API URL to list the downloads on the repository. - events_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/events - description: The API URL to list the events of the repository. - forks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/forks - description: The API URL to list the forks of the repository. - git_commits_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha} - description: A template for the API URL to get information about Git commits - of the repository. - git_refs_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha} - description: A template for the API URL to get information about Git refs - of the repository. - git_tags_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha} - description: A template for the API URL to get information about Git tags - of the repository. - issue_comment_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number} - description: A template for the API URL to get information about issue comments - on the repository. - issue_events_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues/events{/number} - description: A template for the API URL to get information about issue events - on the repository. - issues_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/issues{/number} - description: A template for the API URL to get information about issues - on the repository. - keys_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/keys{/key_id} - description: A template for the API URL to get information about deploy - keys on the repository. - labels_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/labels{/name} - description: A template for the API URL to get information about labels - of the repository. - languages_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/languages - description: The API URL to get information about the languages of the repository. - merges_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/merges - description: The API URL to merge branches in the repository. - milestones_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/milestones{/number} - description: A template for the API URL to get information about milestones - of the repository. - notifications_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} - description: A template for the API URL to get information about notifications - on the repository. - pulls_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/pulls{/number} - description: A template for the API URL to get information about pull requests - on the repository. - releases_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/releases{/id} - description: A template for the API URL to get information about releases - on the repository. - stargazers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/stargazers - description: The API URL to list the stargazers on the repository. - statuses_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/statuses/{sha} - description: A template for the API URL to get information about statuses - of a commit. - subscribers_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscribers - description: The API URL to list the subscribers on the repository. - subscription_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/subscription - description: The API URL to subscribe to notifications for this repository. - tags_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/tags - description: The API URL to get information about tags on the repository. - teams_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/teams - description: The API URL to list the teams on the repository. - trees_url: - type: string - example: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} - description: A template for the API URL to create or retrieve a raw Git - tree of the repository. - hooks_url: - type: string - format: uri - example: https://api.github.com/repos/octocat/Hello-World/hooks - description: The API URL to list the hooks on the repository. - required: - - archive_url - - assignees_url - - blobs_url - - branches_url - - collaborators_url - - comments_url - - commits_url - - compare_url - - contents_url - - contributors_url - - deployments_url - - description - - downloads_url - - events_url - - fork - - forks_url - - full_name - - git_commits_url - - git_refs_url - - git_tags_url - - hooks_url - - html_url - - id - - node_id - - issue_comment_url - - issue_events_url - - issues_url - - keys_url - - labels_url - - languages_url - - merges_url - - milestones_url - - name - - notifications_url - - owner - - private - - pulls_url - - releases_url - - stargazers_url - - statuses_url - - subscribers_url - - subscription_url - - tags_url - - teams_url - - trees_url - - url - nullable: true - dependabot-repository-access-details: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able to access - in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - "$ref": "#/components/schemas/nullable-simple-repository" - additionalProperties: false organization-dependabot-secret: title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. @@ -217498,6 +217671,78 @@ components: tags_url: https://api.github.com/repos/octo-org/hello-world/tags teams_url: https://api.github.com/repos/octo-org/hello-world/teams trees_url: https://api.github.com/repos/octo-org/hello-world/git/trees{/sha} + dependabot-repository-access-details: + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks enterprise-teams-items: value: - id: 1 @@ -221260,78 +221505,6 @@ components: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - dependabot-repository-access-details: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks organization-dependabot-secret-paginated: value: total_count: 3 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 bd38039225..017986498d 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 @@ -24956,6 +24956,905 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + } + } + }, + "additionalProperties": false + }, + "examples": { + "default": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + } + } + } + } + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-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": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-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": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", 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 0922a4cfbc..e6dcf6682d 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 @@ -857,7 +857,7 @@ paths: - subscriptions_url - type - url - type: &330 + type: &332 type: string description: The type of credit the user is receiving. enum: @@ -990,7 +990,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &129 + schema: &131 title: Validation Error Simple description: Validation Error Simple type: object @@ -1023,7 +1023,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &665 + - &667 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1141,7 +1141,7 @@ paths: GitHub. type: object nullable: true - properties: &81 + properties: &83 id: description: Unique identifier of the GitHub app example: 37 @@ -1274,7 +1274,7 @@ paths: about itself. example: 5 type: integer - required: &82 + required: &84 - id - node_id - owner @@ -1579,7 +1579,7 @@ paths: schema: type: integer default: 30 - - &216 + - &218 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 @@ -1588,7 +1588,7 @@ paths: required: false schema: type: string - - &217 + - &219 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -1608,7 +1608,7 @@ paths: application/json: schema: type: array - items: &218 + items: &220 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1688,7 +1688,7 @@ paths: - installation_id - repository_id examples: - default: &219 + default: &221 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1747,7 +1747,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &128 + schema: &130 title: Validation Error description: Validation Error type: object @@ -1816,7 +1816,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &222 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1930,7 +1930,7 @@ paths: - request - response examples: - default: &221 + default: &223 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2131,7 +2131,7 @@ paths: parameters: - *17 - *19 - - &93 + - &95 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) @@ -2714,7 +2714,7 @@ paths: suspended_at: suspended_by: headers: - Link: &68 + Link: &70 example: ; rel="next", ; rel="last" schema: @@ -2903,11 +2903,11 @@ paths: - selected repositories: type: array - items: &80 + items: &82 title: Repository description: A repository on GitHub. type: object - properties: &295 + properties: &297 id: description: Unique identifier of the repository example: 42 @@ -2927,7 +2927,7 @@ paths: title: License Simple description: License Simple type: object - properties: &89 + properties: &91 key: type: string example: mit @@ -2949,7 +2949,7 @@ paths: html_url: type: string format: uri - required: &90 + required: &92 - key - name - url @@ -3358,7 +3358,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &296 + required: &298 - archive_url - assignees_url - blobs_url @@ -7299,7 +7299,7 @@ paths: required: true content: application/json: - schema: &141 + schema: &143 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -7999,7 +7999,7 @@ paths: description: Response content: application/json: - schema: &188 + schema: &190 type: array description: A list of default code security configurations items: @@ -8015,7 +8015,7 @@ paths: default configuration: *49 examples: - default: &189 + default: &191 value: - default_for_new_repos: public configuration: @@ -8477,7 +8477,7 @@ paths: default: value: default_for_new_repos: all - configuration: &187 + configuration: &189 value: id: 1325 target_type: organization @@ -8567,7 +8567,7 @@ paths: application/json: schema: type: array - items: &190 + items: &192 type: object description: Repositories associated with a code security configuration and attachment status @@ -8589,7 +8589,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &208 + properties: &68 id: type: integer format: int64 @@ -8816,7 +8816,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: &209 + required: &69 - archive_url - assignees_url - blobs_url @@ -8868,7 +8868,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &191 + repository: &193 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9373,7 +9373,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &197 + - &199 name: classification in: query description: |- @@ -9382,7 +9382,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &198 + - &200 name: state in: query description: |- @@ -9391,7 +9391,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &199 + - &201 name: severity in: query description: |- @@ -9400,7 +9400,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &200 + - &202 name: ecosystem in: query description: |- @@ -9409,14 +9409,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &201 + - &203 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 - - &202 + - &204 name: epss_percentage in: query description: |- @@ -9428,7 +9428,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 - - &495 + - &497 name: has in: query description: |- @@ -9442,7 +9442,7 @@ paths: type: string enum: - patch - - &203 + - &205 name: assignee in: query description: |- @@ -9451,7 +9451,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &204 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9461,7 +9461,7 @@ paths: enum: - development - runtime - - &205 + - &207 name: sort in: query description: |- @@ -9487,11 +9487,11 @@ paths: application/json: schema: type: array - items: &206 + items: &208 type: object description: A Dependabot alert. properties: - number: &177 + number: &179 type: integer description: The security alert number. readOnly: true @@ -9554,7 +9554,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &496 + security_advisory: &498 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9764,29 +9764,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *66 - url: &180 + url: &182 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &181 + html_url: &183 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &178 + created_at: &180 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: &179 + updated_at: &181 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: &183 + dismissed_at: &185 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9816,21 +9816,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &182 + fixed_at: &184 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: &497 + auto_dismissed_at: &499 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: &498 + dismissal_request: &500 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9892,7 +9892,7 @@ paths: - repository additionalProperties: false examples: - default: &207 + default: &209 value: - number: 2 state: dismissed @@ -10240,6 +10240,266 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - *40 + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: &210 + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able + to access in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + title: Simple Repository + description: A GitHub repository. + type: object + properties: *68 + required: *69 + nullable: true + additionalProperties: false + examples: + default: &211 + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -10261,7 +10521,7 @@ paths: application/json: schema: type: array - items: &69 + items: &71 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10332,7 +10592,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -10405,9 +10665,9 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: &77 + default: &79 value: id: 1 name: Justice League @@ -10436,7 +10696,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &70 + - &72 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10455,7 +10715,7 @@ paths: type: array items: *4 examples: - default: &71 + default: &73 value: - login: octocat id: 1 @@ -10476,7 +10736,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10494,7 +10754,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10525,7 +10785,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10543,7 +10803,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10574,7 +10834,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10592,8 +10852,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *70 - - &72 + - *72 + - &74 name: username description: The handle for the GitHub user account. in: path @@ -10607,7 +10867,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &73 + exampleKey1: &75 value: login: octocat id: 1 @@ -10643,8 +10903,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *70 - *72 + - *74 responses: '201': description: Successfully added team member @@ -10652,7 +10912,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *73 + exampleKey1: *75 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10670,8 +10930,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *70 - *72 + - *74 responses: '204': description: Response @@ -10693,7 +10953,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *70 + - *72 - *17 - *19 responses: @@ -10703,11 +10963,11 @@ paths: application/json: schema: type: array - items: &74 + items: &76 title: Organization Simple description: A GitHub organization. type: object - properties: &193 + properties: &195 login: type: string example: github @@ -10748,7 +11008,7 @@ paths: type: string example: A great organization nullable: true - required: &194 + required: &196 - login - url - id @@ -10762,7 +11022,7 @@ paths: - avatar_url - description examples: - default: &75 + default: &77 value: login: github id: 1 @@ -10793,7 +11053,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10821,9 +11081,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &117 + default: &119 value: - login: github id: 1 @@ -10854,7 +11114,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10895,8 +11155,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *70 - - &76 + - *72 + - &78 name: org description: The organization name. The name is not case sensitive. in: path @@ -10908,9 +11168,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 '404': description: The team is not assigned to the organization x-github: @@ -10929,16 +11189,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10955,8 +11215,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10980,7 +11240,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &78 + - &80 name: team_slug description: The slug of the team name. in: path @@ -10992,11 +11252,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -11014,7 +11274,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *78 + - *80 requestBody: required: true content: @@ -11069,11 +11329,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -11094,7 +11354,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *78 + - *80 responses: '204': description: Response @@ -11132,7 +11392,7 @@ paths: application/json: schema: type: array - items: &112 + items: &114 title: Event description: Event type: object @@ -11142,7 +11402,7 @@ paths: type: type: string nullable: true - actor: &79 + actor: &81 title: Actor description: Actor type: object @@ -11182,7 +11442,7 @@ paths: - id - name - url - org: *79 + org: *81 payload: oneOf: - title: CreateEvent @@ -11228,7 +11488,7 @@ paths: properties: action: type: string - discussion: &758 + discussion: &760 title: Discussion description: A Discussion in a repository. type: object @@ -11515,7 +11775,7 @@ paths: - id labels: type: array - items: &85 + items: &87 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11590,12 +11850,12 @@ paths: properties: action: type: string - issue: &86 + issue: &88 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &550 + properties: &552 id: type: integer format: int64 @@ -11708,7 +11968,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &279 + properties: &281 url: type: string format: uri @@ -11778,7 +12038,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &280 + required: &282 - closed_issues - creator - description @@ -11857,7 +12117,7 @@ paths: timeline_url: type: string format: uri - type: &242 + type: &244 title: Issue Type description: The type of issue. type: object @@ -11907,7 +12167,7 @@ paths: - node_id - name - description - repository: *80 + repository: *82 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11918,9 +12178,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - author_association: &83 + properties: *83 + required: *84 + author_association: &85 title: author_association type: string example: OWNER @@ -11935,7 +12195,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &84 + reactions: &86 title: Reaction Rollup type: object properties: @@ -11971,7 +12231,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &676 + sub_issues_summary: &678 title: Sub-issues Summary type: object properties: @@ -11996,7 +12256,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &87 + properties: &89 id: description: Unique identifier of the issue comment example: 42 @@ -12039,7 +12299,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -12050,15 +12310,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &573 + properties: &575 pinned_at: type: string format: date-time @@ -12070,11 +12330,11 @@ paths: properties: *20 required: *21 nullable: true - required: &574 + required: &576 - pinned_at - pinned_by nullable: true - required: &88 + required: &90 - id - node_id - html_url @@ -12084,7 +12344,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &677 + issue_dependencies_summary: &679 title: Issue Dependencies Summary type: object properties: @@ -12103,7 +12363,7 @@ paths: - total_blocking issue_field_values: type: array - items: &557 + items: &559 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12164,7 +12424,7 @@ paths: - node_id - data_type - value - required: &551 + required: &553 - assignee - closed_at - comments @@ -12189,10 +12449,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - issue @@ -12201,14 +12461,14 @@ paths: properties: action: type: string - issue: *86 - comment: &546 + issue: *88 + comment: &548 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 required: - action - issue @@ -12381,8 +12641,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true allow_forking: type: boolean @@ -12471,7 +12731,7 @@ paths: type: string number: type: integer - pull_request: &91 + pull_request: &93 title: Pull Request Minimal type: object properties: @@ -12542,10 +12802,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - number @@ -12555,7 +12815,7 @@ paths: properties: action: type: string - pull_request: *91 + pull_request: *93 comment: type: object properties: @@ -12806,7 +13066,7 @@ paths: - pull_request updated_at: type: string - pull_request: *91 + pull_request: *93 required: - action - review @@ -12855,7 +13115,7 @@ paths: updated_at: type: string format: date-time - reactions: *84 + reactions: *86 required: - action - comment @@ -12866,7 +13126,7 @@ paths: type: string release: allOf: - - &607 + - &609 title: Release description: A release. type: object @@ -12937,7 +13197,7 @@ paths: author: *4 assets: type: array - items: &608 + items: &610 title: Release Asset description: Data related to a release. type: object @@ -13012,7 +13272,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *84 + reactions: *86 required: - assets_url - upload_url @@ -13104,7 +13364,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &120 + '503': &122 description: Service unavailable content: application/json: @@ -13197,7 +13457,7 @@ paths: _links: type: object properties: - timeline: &92 + timeline: &94 title: Link With Type description: Hypermedia Link with Type type: object @@ -13209,17 +13469,17 @@ paths: required: - href - type - user: *92 - security_advisories: *92 - current_user: *92 - current_user_public: *92 - current_user_actor: *92 - current_user_organization: *92 + user: *94 + security_advisories: *94 + current_user: *94 + current_user_public: *94 + current_user_actor: *94 + current_user_organization: *94 current_user_organizations: type: array - items: *92 - repository_discussions: *92 - repository_discussions_category: *92 + items: *94 + repository_discussions: *94 + repository_discussions_category: *94 required: - timeline - user @@ -13281,7 +13541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *93 + - *95 - *17 - *19 responses: @@ -13291,7 +13551,7 @@ paths: application/json: schema: type: array - items: &94 + items: &96 title: Base Gist description: Base Gist type: object @@ -13390,7 +13650,7 @@ paths: - created_at - updated_at examples: - default: &95 + default: &97 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13435,7 +13695,7 @@ paths: site_admin: false truncated: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 x-github: @@ -13511,7 +13771,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Gist Simple description: Gist Simple type: object @@ -13528,7 +13788,7 @@ paths: url: type: string format: uri - user: &683 + user: &685 title: Public User description: Public User type: object @@ -13890,7 +14150,7 @@ paths: truncated: type: boolean examples: - default: &97 + default: &99 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13994,7 +14254,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -14004,11 +14264,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -14028,7 +14288,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -14038,11 +14298,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '401': *25 '304': *37 '403': *29 @@ -14067,7 +14327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &98 + - &100 name: gist_id description: The unique identifier of the gist. in: path @@ -14079,10 +14339,10 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 - '403': &101 + default: *99 + '403': &103 description: Forbidden Gist content: application/json: @@ -14129,7 +14389,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *98 + - *100 requestBody: required: true content: @@ -14189,9 +14449,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - updateGist: *97 + updateGist: *99 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -14349,7 +14609,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14377,7 +14637,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14387,7 +14647,7 @@ paths: application/json: schema: type: array - items: &99 + items: &101 title: Gist Comment description: A comment made to a gist. type: object @@ -14422,7 +14682,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *83 + author_association: *85 required: - url - id @@ -14462,7 +14722,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -14486,7 +14746,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *98 + - *100 requestBody: required: true content: @@ -14511,9 +14771,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: &100 + default: &102 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14570,8 +14830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *98 - - &102 + - *100 + - &104 name: comment_id description: The unique identifier of the comment. in: path @@ -14584,12 +14844,12 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '304': *37 '404': *6 - '403': *101 + '403': *103 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14610,8 +14870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 requestBody: required: true content: @@ -14636,9 +14896,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '404': *6 x-github: githubCloudOnly: false @@ -14655,8 +14915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 responses: '204': description: Response @@ -14679,7 +14939,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14780,7 +15040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14790,7 +15050,7 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: default: value: @@ -14836,7 +15096,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 '304': *37 '403': *29 @@ -14855,13 +15115,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *98 + - *100 responses: '201': description: Response content: application/json: - schema: *94 + schema: *96 examples: default: value: @@ -14932,7 +15192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *98 + - *100 responses: '204': description: Response if gist is starred @@ -14962,7 +15222,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14984,7 +15244,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -15012,7 +15272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *98 + - *100 - name: sha in: path required: true @@ -15023,9 +15283,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 + default: *99 '422': *15 '404': *6 '403': *29 @@ -15186,7 +15446,7 @@ paths: type: array items: allOf: - - *80 + - *82 repository_selection: type: string example: selected @@ -15309,7 +15569,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '403': *29 '304': *37 '401': *25 @@ -15393,7 +15653,7 @@ paths: - closed - all default: open - - &245 + - &247 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15412,7 +15672,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - name: collab in: query required: false @@ -15442,9 +15702,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &246 + default: &248 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15689,7 +15949,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '404': *6 @@ -15728,8 +15988,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 examples: default: value: @@ -16014,7 +16274,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &103 + X-CommonMarker-Version: &105 example: 0.17.4 schema: type: string @@ -16069,7 +16329,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *103 + X-CommonMarker-Version: *105 content: text/html: schema: @@ -16098,7 +16358,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &106 + - &108 name: account_id description: account_id parameter in: path @@ -16110,7 +16370,7 @@ paths: description: Response content: application/json: - schema: &105 + schema: &107 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -16140,7 +16400,7 @@ paths: nullable: true id: type: integer - plan: &104 + plan: &106 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -16229,7 +16489,7 @@ paths: nullable: true updated_at: type: string - plan: *104 + plan: *106 required: - url - id @@ -16237,7 +16497,7 @@ paths: - login - marketplace_purchase examples: - default: &107 + default: &109 value: url: https://api.github.com/orgs/github type: Organization @@ -16322,9 +16582,9 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: &108 + default: &110 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -16342,7 +16602,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '401': *25 x-github: @@ -16364,14 +16624,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &109 + - &111 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &110 + - &112 name: sort description: The property to sort the results by. in: query @@ -16401,9 +16661,9 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: &111 + default: &113 value: - url: https://api.github.com/orgs/github type: Organization @@ -16454,7 +16714,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '422': *15 '401': *25 @@ -16477,15 +16737,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *106 + - *108 responses: '200': description: Response content: application/json: - schema: *105 + schema: *107 examples: - default: *107 + default: *109 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -16517,11 +16777,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *108 + default: *110 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -16542,8 +16802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *109 - - *110 + - *111 + - *112 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16563,11 +16823,11 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: *111 + default: *113 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -16829,14 +17089,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &342 + - &344 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &343 + - &345 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16853,7 +17113,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -16898,7 +17158,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &346 + '301': &348 description: Moved permanently content: application/json: @@ -16920,7 +17180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &583 + - &585 name: all description: If `true`, show notifications marked as read. in: query @@ -16928,7 +17188,7 @@ paths: schema: type: boolean default: false - - &584 + - &586 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16937,8 +17197,8 @@ paths: schema: type: boolean default: false - - *93 - - &585 + - *95 + - &587 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: @@ -16963,18 +17223,18 @@ paths: application/json: schema: type: array - items: &113 + items: &115 title: Thread description: Thread type: object properties: id: type: string - repository: &159 + repository: &161 title: Minimal Repository description: Minimal Repository type: object - properties: &211 + properties: &213 id: type: integer format: int64 @@ -17260,7 +17520,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &297 + security_and_analysis: &299 nullable: true type: object properties: @@ -17380,7 +17640,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &212 + required: &214 - archive_url - assignees_url - blobs_url @@ -17468,7 +17728,7 @@ paths: - url - subscription_url examples: - default: &586 + default: &588 value: - id: '1' repository: @@ -17550,7 +17810,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -17634,7 +17894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &114 + - &116 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 @@ -17648,7 +17908,7 @@ paths: description: Response content: application/json: - schema: *113 + schema: *115 examples: default: value: @@ -17750,7 +18010,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *114 + - *116 responses: '205': description: Reset Content @@ -17772,7 +18032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *114 + - *116 responses: '204': description: No content @@ -17795,13 +18055,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *114 + - *116 responses: '200': description: Response content: application/json: - schema: &115 + schema: &117 title: Thread Subscription description: Thread Subscription type: object @@ -17838,7 +18098,7 @@ paths: - url - subscribed examples: - default: &116 + default: &118 value: subscribed: true ignored: false @@ -17869,7 +18129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *114 + - *116 requestBody: required: false content: @@ -17890,9 +18150,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *117 examples: - default: *116 + default: *118 '304': *37 '403': *29 '401': *25 @@ -17915,7 +18175,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *114 + - *116 responses: '204': description: Response @@ -18010,9 +18270,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: Link: example: ; rel="next" @@ -18039,13 +18299,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &118 + schema: &120 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -18078,12 +18338,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *118 + schema: *120 examples: selected_actions: *42 responses: @@ -18112,13 +18372,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &119 + schema: &121 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -18151,12 +18411,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *119 + schema: *121 examples: selected_actions: *44 responses: @@ -18186,7 +18446,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *76 + - *78 - name: page description: The page number of the results to fetch. in: query @@ -18358,8 +18618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *76 - - &121 + - *78 + - &123 name: budget_id description: The ID corresponding to the budget. in: path @@ -18456,7 +18716,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18476,8 +18736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 requestBody: required: true content: @@ -18668,8 +18928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 responses: '200': description: Response when deleting a budget @@ -18696,7 +18956,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18716,8 +18976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *76 - - &122 + - *78 + - &124 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, @@ -18726,7 +18986,7 @@ paths: required: false schema: type: integer - - &124 + - &126 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 @@ -18735,7 +18995,7 @@ paths: required: false schema: type: integer - - &123 + - &125 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 @@ -18750,14 +19010,14 @@ paths: required: false schema: type: string - - &733 + - &735 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &125 + - &127 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18874,7 +19134,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18894,9 +19154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *76 - - *122 - - &734 + - *78 + - *124 + - &736 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 @@ -18905,7 +19165,7 @@ paths: required: false schema: type: integer - - *123 + - *125 responses: '200': description: Billing usage report response for an organization @@ -18981,7 +19241,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19004,19 +19264,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *76 - - *122 + - *78 - *124 - - *123 - - &735 + - *126 + - *125 + - &737 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *125 - - &736 + - *127 + - &738 name: sku description: The SKU to query for usage. in: query @@ -19127,7 +19387,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19153,13 +19413,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &126 + schema: &128 title: Organization Full description: Organization Full type: object @@ -19478,7 +19738,7 @@ paths: - updated_at - archived_at examples: - default-response: &127 + default-response: &129 value: login: github id: 1 @@ -19578,7 +19838,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *76 + - *78 requestBody: required: false content: @@ -19794,17 +20054,17 @@ paths: description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '422': description: Validation failed content: application/json: schema: oneOf: - - *128 - - *129 + - *130 + - *131 '409': *54 x-github: githubCloudOnly: false @@ -19828,7 +20088,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *76 + - *78 responses: '202': *39 '404': *6 @@ -19853,7 +20113,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -19879,7 +20139,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19900,7 +20160,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: - - *76 + - *78 - *17 - *19 responses: @@ -19918,7 +20178,7 @@ paths: type: integer repository_cache_usages: type: array - items: &353 + items: &355 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19953,7 +20213,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19973,7 +20233,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -19991,7 +20251,7 @@ paths: type: integer runners: type: array - items: &130 + items: &132 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20045,7 +20305,7 @@ paths: - display_name - source nullable: true - machine_size_details: &138 + machine_size_details: &140 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20141,7 +20401,7 @@ paths: - public_ip_enabled - platform examples: - default: &158 + default: &160 value: total_count: 2 runners: @@ -20183,7 +20443,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20201,7 +20461,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -20278,9 +20538,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: &139 + default: &141 value: id: 5 name: My hosted ubuntu runner @@ -20321,7 +20581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -20337,7 +20597,7 @@ paths: type: integer images: type: array - items: &131 + items: &133 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20388,7 +20648,7 @@ paths: - latest_version - state examples: - default: &133 + default: &135 value: total_count: 2 image_versions: @@ -20419,8 +20679,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: - - *76 - - &132 + - *78 + - &134 name: image_definition_id description: Image definition ID of custom image in: path @@ -20432,7 +20692,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *133 examples: default: value: @@ -20462,8 +20722,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *76 - - *132 + - *78 + - *134 responses: '204': description: Response @@ -20486,8 +20746,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: - - *132 - - *76 + - *134 + - *78 responses: '200': description: Response @@ -20503,7 +20763,7 @@ paths: type: integer image_versions: type: array - items: &134 + items: &136 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20536,7 +20796,7 @@ paths: - created_on - state_details examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20556,9 +20816,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: - - *76 - - *132 - - &135 + - *78 + - *134 + - &137 name: version description: Version of a custom image in: path @@ -20571,7 +20831,7 @@ paths: description: Response content: application/json: - schema: *134 + schema: *136 examples: default: value: @@ -20597,9 +20857,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: - - *76 - - *132 - - *135 + - *78 + - *134 + - *137 responses: '204': description: Response @@ -20620,7 +20880,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: - - *76 + - *78 responses: '200': description: Response @@ -20636,7 +20896,7 @@ paths: type: integer images: type: array - items: &136 + items: &138 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20672,7 +20932,7 @@ paths: - display_name - source examples: - default: &137 + default: &139 value: id: ubuntu-20.04 platform: linux-x64 @@ -20696,7 +20956,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: - - *76 + - *78 responses: '200': description: Response @@ -20712,9 +20972,9 @@ paths: type: integer images: type: array - items: *136 + items: *138 examples: - default: *137 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20731,7 +20991,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: - - *76 + - *78 responses: '200': description: Response @@ -20784,7 +21044,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: - - *76 + - *78 responses: '200': description: Response @@ -20800,7 +21060,7 @@ paths: type: integer machine_specs: type: array - items: *138 + items: *140 examples: default: value: @@ -20825,7 +21085,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: - - *76 + - *78 responses: '200': description: Response @@ -20869,8 +21129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *76 - - &140 + - *78 + - &142 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20882,11 +21142,11 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20904,8 +21164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 requestBody: required: true content: @@ -20971,9 +21231,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20989,16 +21249,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 responses: '202': description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -21018,7 +21278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: A JSON array of OIDC custom property inclusions @@ -21051,12 +21311,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *141 + schema: *143 examples: default: *46 responses: @@ -21090,7 +21350,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 - name: custom_property_name in: path required: true @@ -21123,7 +21383,7 @@ 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: - - *76 + - *78 responses: '200': description: A JSON serialized template for OIDC subject claim customization @@ -21143,7 +21403,7 @@ paths: required: - include_claim_keys examples: - default: &142 + default: &144 value: include_claim_keys: - repo @@ -21165,7 +21425,7 @@ 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: - - *76 + - *78 requestBody: required: true content: @@ -21182,13 +21442,13 @@ paths: items: type: string examples: - default: *142 + default: *144 responses: '201': description: Empty response content: application/json: - schema: &168 + schema: &170 title: Empty Object description: An object without any properties. type: object @@ -21218,7 +21478,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -21227,7 +21487,7 @@ paths: schema: type: object properties: - enabled_repositories: &143 + enabled_repositories: &145 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21240,7 +21500,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: &144 + allowed_actions: &146 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21248,12 +21508,12 @@ paths: - all - local_only - selected - selected_actions_url: &359 + selected_actions_url: &361 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: &145 + sha_pinning_required: &147 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21284,7 +21544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21295,9 +21555,9 @@ paths: schema: type: object properties: - enabled_repositories: *143 - allowed_actions: *144 - sha_pinning_required: *145 + enabled_repositories: *145 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled_repositories examples: @@ -21325,13 +21585,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &363 + schema: &365 type: object properties: days: @@ -21368,12 +21628,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &364 + schema: &366 type: object properties: days: @@ -21410,13 +21670,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &146 + schema: &148 type: object properties: approval_policy: @@ -21430,7 +21690,7 @@ paths: required: - approval_policy examples: - default: &365 + default: &367 value: approval_policy: first_time_contributors '404': *6 @@ -21451,7 +21711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21461,7 +21721,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -21483,13 +21743,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: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &366 + schema: &368 type: object required: - run_workflows_from_fork_pull_requests @@ -21515,7 +21775,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &147 + default: &149 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21538,12 +21798,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: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &367 + schema: &369 type: object required: - run_workflows_from_fork_pull_requests @@ -21566,7 +21826,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -21596,7 +21856,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: - - *76 + - *78 - *17 - *19 responses: @@ -21614,9 +21874,9 @@ paths: type: number repositories: type: array - items: *80 + items: *82 examples: - default: &151 + default: &153 value: total_count: 1 repositories: @@ -21756,7 +22016,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: - - *76 + - *78 responses: '204': description: Response @@ -21800,8 +22060,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: - - *76 - - &148 + - *78 + - &150 name: repository_id description: The unique identifier of the repository. in: path @@ -21829,8 +22089,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -21853,13 +22113,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &149 + schema: &151 type: object properties: github_owned_allowed: @@ -21881,7 +22141,7 @@ paths: items: type: string examples: - default: &150 + default: &152 value: github_owned_allowed: true verified_allowed: false @@ -21906,7 +22166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21914,9 +22174,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21936,7 +22196,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -21984,7 +22244,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -22031,7 +22291,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: - - *76 + - *78 - *17 - *19 responses: @@ -22046,9 +22306,9 @@ paths: type: integer repositories: type: array - items: *80 + items: *82 examples: - default: *151 + default: *153 '403': *29 '404': *6 x-github: @@ -22068,7 +22328,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: - - *76 + - *78 requestBody: required: true content: @@ -22116,8 +22376,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -22143,8 +22403,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -22172,23 +22432,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &368 + schema: &370 type: object properties: - default_workflow_permissions: &152 + default_workflow_permissions: &154 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &153 + can_approve_pull_request_reviews: &155 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22196,7 +22456,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &154 + default: &156 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22221,7 +22481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Success response @@ -22229,13 +22489,13 @@ paths: required: false content: application/json: - schema: &369 + schema: &371 type: object properties: - default_workflow_permissions: *152 - can_approve_pull_request_reviews: *153 + default_workflow_permissions: *154 + can_approve_pull_request_reviews: *155 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22255,7 +22515,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: - - *76 + - *78 - *17 - *19 - name: visible_to_repository @@ -22280,7 +22540,7 @@ paths: type: number runner_groups: type: array - items: &155 + items: &157 type: object properties: id: @@ -22396,7 +22656,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: - - *76 + - *78 requestBody: required: true content: @@ -22468,9 +22728,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: &157 + default: &159 value: id: 2 name: octo-runner-group @@ -22505,8 +22765,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: - - *76 - - &156 + - *78 + - &158 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22518,7 +22778,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: default: value: @@ -22554,8 +22814,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -22609,9 +22869,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: *157 + default: *159 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22630,8 +22890,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: - - *76 - - *156 + - *78 + - *158 responses: '204': description: Response @@ -22654,8 +22914,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -22673,11 +22933,11 @@ paths: type: number runners: type: array - items: *130 + items: *132 examples: - default: *158 + default: *160 headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22697,8 +22957,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: - - *76 - - *156 + - *78 + - *158 - *19 - *17 responses: @@ -22716,9 +22976,9 @@ paths: type: number repositories: type: array - items: *159 + items: *161 examples: - default: &196 + default: &198 value: total_count: 1 repositories: @@ -22970,8 +23230,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -23015,9 +23275,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -23039,9 +23299,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -23064,8 +23324,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -23083,7 +23343,7 @@ paths: type: number runners: type: array - items: &161 + items: &163 title: Self hosted runners description: A self hosted runner type: object @@ -23112,7 +23372,7 @@ paths: type: boolean labels: type: array - items: &164 + items: &166 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23142,7 +23402,7 @@ paths: - busy - labels examples: - default: &162 + default: &164 value: total_count: 2 runners: @@ -23182,7 +23442,7 @@ paths: name: no-gpu type: custom headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23201,8 +23461,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -23246,9 +23506,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: - - *76 - - *156 - - &160 + - *78 + - *158 + - &162 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23276,9 +23536,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: - - *76 - - *156 - - *160 + - *78 + - *158 + - *162 responses: '204': description: Response @@ -23308,7 +23568,7 @@ paths: in: query schema: type: string - - *76 + - *78 - *17 - *19 responses: @@ -23326,11 +23586,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23352,7 +23612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -23360,7 +23620,7 @@ paths: application/json: schema: type: array - items: &370 + items: &372 title: Runner Application description: Runner Application type: object @@ -23385,7 +23645,7 @@ paths: - download_url - filename examples: - default: &371 + default: &373 value: - os: osx architecture: x64 @@ -23428,7 +23688,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: - - *76 + - *78 requestBody: required: true content: @@ -23471,7 +23731,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &372 + '201': &374 description: Response content: application/json: @@ -23481,7 +23741,7 @@ paths: - runner - encoded_jit_config properties: - runner: *161 + runner: *163 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23538,13 +23798,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: &163 + schema: &165 title: Authentication Token description: Authentication Token type: object @@ -23566,7 +23826,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *80 + items: *82 single_file: type: string example: config.yaml @@ -23582,7 +23842,7 @@ paths: - token - expires_at examples: - default: &373 + default: &375 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23613,15 +23873,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &374 + default: &376 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23646,16 +23906,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: - - *76 - - *160 + - *78 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: &375 + default: &377 value: id: 23 name: MBP @@ -23696,8 +23956,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: - - *76 - - *160 + - *78 + - *162 responses: '204': description: Response @@ -23723,10 +23983,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &165 + '200': &167 description: Response content: application/json: @@ -23740,7 +24000,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -23779,8 +24039,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -23804,7 +24064,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23828,8 +24088,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -23854,7 +24114,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23878,10 +24138,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &376 + '200': &378 description: Response content: application/json: @@ -23895,7 +24155,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -23936,9 +24196,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: - - *76 - - *160 - - &377 + - *78 + - *162 + - &379 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23946,7 +24206,7 @@ paths: schema: type: string responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23971,7 +24231,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -23989,7 +24249,7 @@ paths: type: integer secrets: type: array - items: &166 + items: &168 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24039,7 +24299,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24062,13 +24322,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &389 + schema: &391 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24097,7 +24357,7 @@ paths: - key_id - key examples: - default: &390 + default: &392 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24122,8 +24382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *76 - - &167 + - *78 + - &169 name: secret_name description: The name of the secret. in: path @@ -24135,7 +24395,7 @@ paths: description: Response content: application/json: - schema: *166 + schema: *168 examples: default: value: @@ -24165,8 +24425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -24223,7 +24483,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -24249,8 +24509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -24276,8 +24536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -24295,9 +24555,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: &171 + default: &173 value: total_count: 1 repositories: @@ -24389,8 +24649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -24442,8 +24702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24476,8 +24736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24509,8 +24769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *76 - - &358 + - *78 + - &360 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)." @@ -24534,7 +24794,7 @@ paths: type: integer variables: type: array - items: &169 + items: &171 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24598,7 +24858,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24619,7 +24879,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *76 + - *78 requestBody: required: true content: @@ -24667,7 +24927,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -24692,8 +24952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *76 - - &170 + - *78 + - &172 name: name description: The name of the variable. in: path @@ -24705,7 +24965,7 @@ paths: description: Response content: application/json: - schema: *169 + schema: *171 examples: default: value: @@ -24735,8 +24995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -24798,8 +25058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 responses: '204': description: Response @@ -24825,8 +25085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - *19 - *17 responses: @@ -24844,9 +25104,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24872,8 +25132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -24922,8 +25182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -24957,8 +25217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -24999,7 +25259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -25122,7 +25382,7 @@ paths: type: integer deployment_records: type: array - items: &172 + items: &174 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25168,7 +25428,7 @@ paths: required: - total_count examples: - default: &173 + default: &175 value: total_count: 1 deployment_records: @@ -25205,7 +25465,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *76 + - *78 - name: cluster in: path description: The cluster name. @@ -25348,11 +25608,11 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 required: - total_count examples: - default: *173 + default: *175 '403': description: Forbidden content: @@ -25399,7 +25659,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -25562,7 +25822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *76 + - *78 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25587,9 +25847,9 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25609,7 +25869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25694,7 +25954,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 requestBody: required: true content: @@ -25718,12 +25978,12 @@ paths: required: - subject_digests examples: - default: &715 + default: &717 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &716 + withPredicateType: &718 value: subject_digests: - sha256:abc123 @@ -25781,7 +26041,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &717 + default: &719 value: attestations_subject_digests: - sha256:abc: @@ -25890,7 +26150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *76 + - *78 requestBody: required: true content: @@ -25955,7 +26215,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *76 + - *78 - name: subject_digest description: Subject Digest in: path @@ -25990,7 +26250,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -26038,7 +26298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *76 + - *78 - name: attestation_id description: Attestation ID in: path @@ -26076,7 +26336,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26131,7 +26391,7 @@ paths: initiator: type: string examples: - default: &403 + default: &405 value: attestations: - bundle: @@ -26238,7 +26498,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -26250,7 +26510,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26269,8 +26529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: If the user is blocked @@ -26295,8 +26555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -26316,8 +26576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -26342,7 +26602,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *76 + - *78 - *19 - *17 - *62 @@ -26350,7 +26610,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &174 + schema: &176 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26376,7 +26636,7 @@ paths: application/json: schema: type: array - items: &175 + items: &177 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26407,7 +26667,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &195 + items: &197 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26482,7 +26742,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &257 + properties: &259 id: description: Unique identifier of the team type: integer @@ -26554,7 +26814,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &258 + required: &260 - id - node_id - url @@ -26597,7 +26857,7 @@ paths: type: string format: date-time nullable: true - state: *174 + state: *176 contact_link: description: The contact link of the campaign. type: string @@ -26692,9 +26952,9 @@ paths: closed_at: state: open headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26718,7 +26978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -26817,9 +27077,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: &176 + default: &178 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26868,7 +27128,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26890,7 +27150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -26902,16 +27162,16 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26932,7 +27192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -26981,7 +27241,7 @@ paths: type: string format: uri nullable: true - state: *174 + state: *176 examples: default: value: @@ -26991,9 +27251,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '400': description: Bad Request content: @@ -27005,7 +27265,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27026,7 +27286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -27037,7 +27297,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27059,18 +27319,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *76 - - &428 + - *78 + - &430 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: &184 + schema: &186 type: string description: The name of the tool used to generate the code scanning analysis. - - &429 + - &431 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 @@ -27078,7 +27338,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &185 + schema: &187 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -27093,7 +27353,7 @@ paths: be returned. in: query required: false - schema: &431 + schema: &433 type: string description: State of a code scanning alert. enum: @@ -27116,7 +27376,7 @@ paths: be returned. in: query required: false - schema: &432 + schema: &434 type: string description: Severity of a code scanning alert. enum: @@ -27145,18 +27405,18 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: &433 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: &435 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &186 + state: &188 type: string description: State of a code scanning alert. nullable: true @@ -27164,7 +27424,7 @@ paths: - open - dismissed - fixed - fixed_at: *182 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -27172,8 +27432,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: &434 + dismissed_at: *185 + dismissed_reason: &436 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -27182,13 +27442,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &435 + dismissed_comment: &437 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &436 + rule: &438 type: object properties: id: @@ -27241,42 +27501,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &437 + tool: &439 type: object properties: - name: *184 + name: *186 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *185 - most_recent_instance: &438 + guid: *187 + most_recent_instance: &440 type: object properties: - ref: &430 + ref: &432 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &448 + analysis_key: &450 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: &449 + environment: &451 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: &450 + category: &452 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: *186 + state: *188 commit_sha: type: string message: @@ -27290,7 +27550,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &451 + location: &453 type: object description: Describe a region within a file for the alert. properties: @@ -27311,7 +27571,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: &452 + items: &454 type: string description: A classification of the file. For example to identify it as generated. @@ -27576,9 +27836,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: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27600,7 +27860,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *76 + - *78 - name: target_type in: query description: The target type of the code security configuration @@ -27706,7 +27966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *76 + - *78 requestBody: required: true content: @@ -27950,7 +28210,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27972,15 +28232,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *188 + schema: *190 examples: - default: *189 + default: *191 '304': *37 '403': *29 '404': *6 @@ -28006,7 +28266,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -28058,7 +28318,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '200': @@ -28067,7 +28327,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 '304': *37 '403': *29 '404': *6 @@ -28091,7 +28351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28371,7 +28631,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '204': *61 @@ -28402,7 +28662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28466,7 +28726,7 @@ 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: - - *76 + - *78 - *51 requestBody: required: true @@ -28512,7 +28772,7 @@ paths: default: value: default_for_new_repos: all - configuration: *187 + configuration: *189 '403': *29 '404': *6 x-github: @@ -28536,7 +28796,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *76 + - *78 - *51 - name: per_page description: The number of results per page (max 100). For more information, @@ -28565,13 +28825,13 @@ paths: application/json: schema: type: array - items: *190 + items: *192 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *191 + repository: *193 '403': *29 '404': *6 x-github: @@ -28595,7 +28855,7 @@ paths: parameters: - *17 - *19 - - *76 + - *78 responses: '200': description: Response @@ -28611,7 +28871,7 @@ paths: type: integer codespaces: type: array - items: &247 + items: &249 type: object title: Codespace description: A codespace. @@ -28636,12 +28896,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *159 + repository: *161 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &464 + properties: &466 name: type: string description: The name of the machine. @@ -28683,7 +28943,7 @@ paths: - ready - in_progress nullable: true - required: &465 + required: &467 - name - display_name - operating_system @@ -28888,7 +29148,7 @@ paths: - pulls_url - recent_folders examples: - default: &248 + default: &250 value: total_count: 3 codespaces: @@ -29320,7 +29580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29387,7 +29647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29442,7 +29702,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *76 + - *78 requestBody: required: true content: @@ -29494,7 +29754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -29512,7 +29772,7 @@ paths: type: integer secrets: type: array - items: &192 + items: &194 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29551,7 +29811,7 @@ paths: - updated_at - visibility examples: - default: &466 + default: &468 value: total_count: 2 secrets: @@ -29564,7 +29824,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29583,13 +29843,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &467 + schema: &469 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29618,7 +29878,7 @@ paths: - key_id - key examples: - default: &468 + default: &470 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29641,23 +29901,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: &470 + default: &472 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29677,8 +29937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -29733,7 +29993,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -29759,8 +30019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -29785,8 +30045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -29804,9 +30064,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '404': *6 x-github: githubCloudOnly: false @@ -29828,8 +30088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -29879,8 +30139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -29913,8 +30173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -29953,7 +30213,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: - - *76 + - *78 responses: '200': description: OK @@ -30094,7 +30354,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: - - *76 + - *78 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -30117,7 +30377,7 @@ paths: currently being billed. seats: type: array - items: &250 + items: &252 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30134,15 +30394,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *193 - required: *194 + properties: *195 + required: *196 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *195 - - *69 + - *197 + - *71 nullable: true pending_cancellation_date: type: string @@ -30266,7 +30526,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '500': *55 '401': *25 '403': *29 @@ -30300,7 +30560,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: - - *76 + - *78 requestBody: content: application/json: @@ -30378,7 +30638,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: - - *76 + - *78 requestBody: content: application/json: @@ -30458,7 +30718,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: - - *76 + - *78 requestBody: content: application/json: @@ -30535,7 +30795,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: - - *76 + - *78 requestBody: content: application/json: @@ -30613,7 +30873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#get-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -30678,7 +30938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30733,7 +30993,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#list-repositories-enabled-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -30748,12 +31008,12 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 required: - total_count - repositories examples: - default: *196 + default: *198 '500': *55 '401': *25 '403': *29 @@ -30782,7 +31042,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-selected-repositories-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30838,8 +31098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -30872,8 +31132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -30912,7 +31172,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: - - *76 + - *78 responses: '200': description: OK @@ -30965,7 +31225,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: - - *76 + - *78 requestBody: description: The content exclusion rules to set required: true @@ -31056,7 +31316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *76 + - *78 - 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`). @@ -31088,7 +31348,7 @@ paths: application/json: schema: type: array - items: &335 + items: &337 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31395,7 +31655,7 @@ paths: - date additionalProperties: true examples: - default: &336 + default: &338 value: - date: '2024-06-24' total_active_users: 24 @@ -31497,7 +31757,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &337 + '422': &339 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31528,7 +31788,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31567,7 +31827,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31604,7 +31864,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31643,7 +31903,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31676,13 +31936,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *76 - - *197 - - *198 + - *78 - *199 - *200 - *201 - *202 + - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31712,7 +31972,7 @@ paths: enum: - patch - deployment - - *203 + - *205 - name: runtime_risk in: query description: |- @@ -31721,8 +31981,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *204 - - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -31734,9 +31994,9 @@ paths: application/json: schema: type: array - items: *206 + items: *208 examples: - default: *207 + default: *209 '304': *37 '400': *14 '403': *29 @@ -31762,7 +32022,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: - - *76 + - *78 - name: page in: query description: The page number of results to fetch. @@ -31785,104 +32045,9 @@ paths: description: Response content: application/json: - schema: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able - to access in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot - updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - title: Simple Repository - description: A GitHub repository. - type: object - properties: *208 - required: *209 - nullable: true - additionalProperties: false + schema: *210 examples: - default: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + default: *211 '403': *29 '404': *6 x-github: @@ -31913,7 +32078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -31979,7 +32144,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *76 + - *78 requestBody: required: true content: @@ -32027,7 +32192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32045,7 +32210,7 @@ paths: type: integer secrets: type: array - items: &210 + items: &212 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -32095,7 +32260,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32116,13 +32281,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &501 + schema: &503 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -32139,7 +32304,7 @@ paths: - key_id - key examples: - default: &502 + default: &504 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32162,14 +32327,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *210 + schema: *212 examples: default: value: @@ -32197,8 +32362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -32255,7 +32420,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -32279,8 +32444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -32304,8 +32469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -32323,9 +32488,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32346,8 +32511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -32397,8 +32562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32429,8 +32594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32460,7 +32625,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: - - *76 + - *78 responses: '200': description: Response @@ -32468,7 +32633,7 @@ paths: application/json: schema: type: array - items: &260 + items: &262 title: Package description: A software package type: object @@ -32518,8 +32683,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *211 - required: *212 + properties: *213 + required: *214 nullable: true created_at: type: string @@ -32538,7 +32703,7 @@ paths: - created_at - updated_at examples: - default: &261 + default: &263 value: - id: 197 name: hello_docker @@ -32616,7 +32781,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32626,7 +32791,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -32698,7 +32863,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32708,7 +32873,7 @@ paths: application/json: schema: type: array - items: &236 + items: &238 title: Organization Invitation description: Organization Invitation type: object @@ -32755,7 +32920,7 @@ paths: - invitation_teams_url - node_id examples: - default: &237 + default: &239 value: - id: 1 login: monalisa @@ -32788,7 +32953,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -32812,7 +32977,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32822,7 +32987,7 @@ paths: application/json: schema: type: array - items: &213 + items: &215 title: Org Hook description: Org Hook type: object @@ -32910,7 +33075,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -32933,7 +33098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *76 + - *78 requestBody: required: true content: @@ -32993,9 +33158,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: - default: &214 + default: &216 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -33042,8 +33207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *76 - - &215 + - *78 + - &217 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. @@ -33056,9 +33221,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: - default: *214 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -33085,8 +33250,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 requestBody: required: false content: @@ -33131,7 +33296,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: default: value: @@ -33172,8 +33337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 responses: '204': description: Response @@ -33200,8 +33365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *76 - - *215 + - *78 + - *217 responses: '200': description: Response @@ -33231,8 +33396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *76 - - *215 + - *78 + - *217 requestBody: required: false content: @@ -33282,11 +33447,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *76 - - *215 - - *17 - - *216 + - *78 - *217 + - *17 + - *218 + - *219 responses: '200': description: Response @@ -33294,9 +33459,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *219 + default: *221 '400': *14 '422': *15 x-github: @@ -33321,17 +33486,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: - default: *221 + default: *223 '400': *14 '422': *15 x-github: @@ -33356,8 +33521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 - *16 responses: '202': *39 @@ -33386,8 +33551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 responses: '204': description: Response @@ -33409,8 +33574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *76 - - &226 + - *78 + - &228 name: actor_type in: path description: The type of the actor @@ -33423,14 +33588,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &227 + - &229 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &222 + - &224 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`.' @@ -33438,7 +33603,7 @@ paths: required: true schema: type: string - - &223 + - &225 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) @@ -33531,13 +33696,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *76 - - *222 - - *223 + - *78 + - *224 + - *225 - *19 - *17 - *62 - - &232 + - &234 name: sort description: The property to sort the results by. in: query @@ -33614,15 +33779,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *76 - - *222 - - *223 + - *78 + - *224 + - *225 responses: '200': description: Response content: application/json: - schema: &224 + schema: &226 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33638,7 +33803,7 @@ paths: type: integer format: int64 examples: - default: &225 + default: &227 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33658,24 +33823,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *76 - - &228 + - *78 + - &230 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *222 - - *223 + - *224 + - *225 responses: '200': description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *225 + default: *227 x-github: enabledForGitHubApps: true category: orgs @@ -33693,19 +33858,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *76 - - *222 - - *223 - - *226 - - *227 + - *78 + - *224 + - *225 + - *228 + - *229 responses: '200': description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *225 + default: *227 x-github: enabledForGitHubApps: true category: orgs @@ -33722,10 +33887,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *76 - - *222 - - *223 - - &229 + - *78 + - *224 + - *225 + - &231 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33738,7 +33903,7 @@ paths: description: Response content: application/json: - schema: &230 + schema: &232 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33754,7 +33919,7 @@ paths: type: integer format: int64 examples: - default: &231 + default: &233 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33790,19 +33955,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *76 - - *228 - - *222 - - *223 - - *229 + - *78 + - *230 + - *224 + - *225 + - *231 responses: '200': description: Response content: application/json: - schema: *230 + schema: *232 examples: - default: *231 + default: *233 x-github: enabledForGitHubApps: true category: orgs @@ -33819,20 +33984,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *76 - - *226 - - *227 - - *222 - - *223 + - *78 + - *228 - *229 + - *224 + - *225 + - *231 responses: '200': description: Response content: application/json: - schema: *230 + schema: *232 examples: - default: *231 + default: *233 x-github: enabledForGitHubApps: true category: orgs @@ -33849,14 +34014,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *76 - - *228 - - *222 - - *223 + - *78 + - *230 + - *224 + - *225 - *19 - *17 - *62 - - *232 + - *234 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33929,7 +34094,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *76 + - *78 responses: '200': description: Response @@ -33937,7 +34102,7 @@ paths: application/json: schema: *22 examples: - default: &541 + default: &543 value: id: 1 account: @@ -34006,7 +34171,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -34076,7 +34241,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34095,7 +34260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34103,12 +34268,12 @@ paths: application/json: schema: anyOf: - - &234 + - &236 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &233 + limit: &235 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -34133,7 +34298,7 @@ paths: properties: {} additionalProperties: false examples: - default: &235 + default: &237 value: limit: collaborators_only origin: organization @@ -34157,18 +34322,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &542 + schema: &544 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *233 + limit: *235 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -34192,9 +34357,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *235 + default: *237 '422': *15 x-github: githubCloudOnly: false @@ -34212,7 +34377,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -34236,7 +34401,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *76 + - *78 - *17 - *19 - name: role @@ -34270,11 +34435,11 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34295,7 +34460,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *76 + - *78 requestBody: required: false content: @@ -34349,7 +34514,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *238 examples: default: value: @@ -34403,8 +34568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *76 - - &238 + - *78 + - &240 name: invitation_id description: The unique identifier of the invitation. in: path @@ -34434,8 +34599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *76 - - *238 + - *78 + - *240 - *17 - *19 responses: @@ -34445,9 +34610,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34463,7 +34628,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34482,7 +34647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34490,7 +34655,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -34633,7 +34798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -34723,9 +34888,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: &240 + default: &242 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -34780,8 +34945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *76 - - &241 + - *78 + - &243 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -34889,9 +35054,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 '404': *6 '422': *7 x-github: @@ -34915,8 +35080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *76 - - *241 + - *78 + - *243 responses: '204': *61 '404': *6 @@ -34938,7 +35103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34946,7 +35111,7 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: default: value: @@ -34984,7 +35149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -35031,9 +35196,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: &243 + default: &245 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -35065,8 +35230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *76 - - &244 + - *78 + - &246 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -35119,9 +35284,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *243 + default: *245 '404': *6 '422': *7 x-github: @@ -35145,8 +35310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *76 - - *244 + - *78 + - *246 responses: '204': description: Response @@ -35179,7 +35344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *76 + - *78 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -35209,7 +35374,7 @@ paths: - closed - all default: open - - *245 + - *247 - name: type description: Can be the name of an issue type. in: query @@ -35228,7 +35393,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -35238,11 +35403,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *246 + default: *248 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -35262,7 +35427,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *76 + - *78 - 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) @@ -35300,9 +35465,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -35320,8 +35485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if requester is an organization member and user is @@ -35355,8 +35520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -35382,8 +35547,8 @@ paths: parameters: - *17 - *19 - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response @@ -35399,9 +35564,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: - default: *248 + default: *250 '304': *37 '500': *55 '401': *25 @@ -35426,9 +35591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *76 - - *72 - - &249 + - *78 + - *74 + - &251 name: codespace_name in: path required: true @@ -35461,17 +35626,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *76 - - *72 - - *249 + - *78 + - *74 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: &463 + default: &465 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -35644,14 +35809,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: - - *76 - - *72 + - *78 + - *74 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *250 + schema: *252 examples: default: value: @@ -35720,14 +35885,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response content: application/json: - schema: &251 + schema: &253 title: Org Membership description: Org Membership type: object @@ -35771,7 +35936,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *74 + organization: *76 user: title: Simple User description: A GitHub user. @@ -35794,7 +35959,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &252 + response-if-user-has-an-active-admin-membership-with-organization: &254 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -35866,8 +36031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -35895,9 +36060,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - response-if-user-already-had-membership-with-organization: *252 + response-if-user-already-had-membership-with-organization: *254 '422': *15 '403': *29 x-github: @@ -35921,8 +36086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -35947,7 +36112,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *76 + - *78 - *17 - *19 - name: exclude @@ -35968,7 +36133,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Migration description: A migration. type: object @@ -36009,7 +36174,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *80 + items: *82 url: type: string format: uri @@ -36205,7 +36370,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -36221,7 +36386,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *76 + - *78 requestBody: required: true content: @@ -36297,7 +36462,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -36475,8 +36640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *76 - - &254 + - *78 + - &256 name: migration_id description: The unique identifier of the migration. in: path @@ -36503,7 +36668,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -36672,8 +36837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *76 - - *254 + - *78 + - *256 responses: '302': description: Response @@ -36694,8 +36859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *76 - - *254 + - *78 + - *256 responses: '204': description: Response @@ -36718,9 +36883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *76 - - *254 - - &698 + - *78 + - *256 + - &700 name: repo_name description: repo_name parameter in: path @@ -36747,8 +36912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *76 - - *254 + - *78 + - *256 - *17 - *19 responses: @@ -36758,9 +36923,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: &266 + default: &268 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -36873,7 +37038,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -36899,7 +37064,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of organization roles @@ -36915,7 +37080,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &256 + items: &258 title: Organization Role description: Organization roles type: object @@ -37062,8 +37227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -37088,9 +37253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *76 - *78 - - &255 + - *80 + - &257 name: role_id description: The unique identifier of the role. in: path @@ -37125,9 +37290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *76 - *78 - - *255 + - *80 + - *257 responses: '204': description: Response @@ -37152,8 +37317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -37178,9 +37343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *76 - - *72 - - *255 + - *78 + - *74 + - *257 responses: '204': description: Response @@ -37210,9 +37375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *76 - - *72 - - *255 + - *78 + - *74 + - *257 responses: '204': description: Response @@ -37240,14 +37405,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *76 - - *255 + - *78 + - *257 responses: '200': description: Response content: application/json: - schema: *256 + schema: *258 examples: default: value: @@ -37297,8 +37462,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: - - *76 - - *255 + - *78 + - *257 - *17 - *19 responses: @@ -37376,8 +37541,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 nullable: true type: description: The ownership type of the team @@ -37409,9 +37574,9 @@ paths: - type - parent examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -37438,8 +37603,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: - - *76 - - *255 + - *78 + - *257 - *17 - *19 responses: @@ -37467,13 +37632,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &331 + items: &333 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 name: nullable: true type: string @@ -37568,9 +37733,9 @@ paths: - type - url examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -37592,7 +37757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *76 + - *78 - 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) @@ -37619,9 +37784,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37644,8 +37809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -37702,8 +37867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -37760,8 +37925,8 @@ paths: - docker - nuget - container - - *76 - - &699 + - *78 + - &701 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37797,12 +37962,12 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '403': *29 '401': *25 - '400': &701 + '400': &703 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37824,7 +37989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &262 + - &264 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 @@ -37842,20 +38007,20 @@ paths: - docker - nuget - container - - &263 + - &265 name: package_name description: The name of the package. in: path required: true schema: type: string - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -37907,9 +38072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 responses: '204': description: Response @@ -37941,9 +38106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 - name: token description: package token schema: @@ -37975,9 +38140,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: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 - *19 - *17 - name: state @@ -37997,7 +38162,7 @@ paths: application/json: schema: type: array - items: &264 + items: &266 title: Package Version description: A version of a software package type: object @@ -38122,10 +38287,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 - - &265 + - *264 + - *265 + - *78 + - &267 name: package_version_id description: Unique identifier of the package version. in: path @@ -38137,7 +38302,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38173,10 +38338,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 - *265 + - *78 + - *267 responses: '204': description: Response @@ -38208,10 +38373,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 - *265 + - *78 + - *267 responses: '204': description: Response @@ -38238,10 +38403,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: - - *76 + - *78 - *17 - *19 - - &267 + - &269 name: sort description: The property by which to sort the results. in: query @@ -38252,7 +38417,7 @@ paths: - created_at default: created_at - *62 - - &268 + - &270 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -38263,7 +38428,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &269 + - &271 name: repository description: The name of the repository to use to filter the results. in: query @@ -38271,7 +38436,7 @@ paths: schema: type: string example: Hello-World - - &270 + - &272 name: permission description: The permission to use to filter the results. in: query @@ -38279,7 +38444,7 @@ paths: schema: type: string example: issues_read - - &271 + - &273 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) @@ -38289,7 +38454,7 @@ paths: schema: type: string format: date-time - - &272 + - &274 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) @@ -38299,7 +38464,7 @@ paths: schema: type: string format: date-time - - &273 + - &275 name: token_id description: The ID of the token in: query @@ -38443,7 +38608,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38463,7 +38628,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: - - *76 + - *78 requestBody: required: true content: @@ -38529,7 +38694,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38590,7 +38755,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38610,11 +38775,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38635,17 +38800,17 @@ 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: - - *76 + - *78 - *17 - *19 - - *267 - - *62 - - *268 - *269 + - *62 - *270 - *271 - *272 - *273 + - *274 + - *275 responses: '500': *55 '422': *15 @@ -38774,7 +38939,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38794,7 +38959,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: - - *76 + - *78 requestBody: required: true content: @@ -38854,7 +39019,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: - - *76 + - *78 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -38906,7 +39071,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: - - *76 + - *78 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -38925,11 +39090,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38951,7 +39116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38969,7 +39134,7 @@ paths: type: integer configurations: type: array - items: &274 + items: &276 title: Organization private registry description: Private registry configuration for an organization type: object @@ -39098,7 +39263,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *68 + Link: *70 '400': *14 '404': *6 x-github: @@ -39121,7 +39286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -39440,7 +39605,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &275 + org-private-registry-with-selected-visibility: &277 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -39481,7 +39646,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: - - *76 + - *78 responses: '200': description: Response @@ -39507,7 +39672,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -39529,16 +39694,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *274 + schema: *276 examples: - default: *275 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -39560,8 +39725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -39737,8 +39902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -39761,7 +39926,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *76 + - *78 - name: q description: Limit results to projects of the specified type. in: query @@ -39778,7 +39943,7 @@ paths: application/json: schema: type: array - items: &276 + items: &278 title: Projects v2 Project description: A projects v2 project type: object @@ -39848,7 +40013,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &789 + properties: &791 id: type: number description: The unique identifier of the status update. @@ -39896,7 +40061,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &790 + required: &792 - id - node_id - created_at @@ -39921,7 +40086,7 @@ paths: - deleted_at - deleted_by examples: - default: &277 + default: &279 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -40004,7 +40169,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40024,24 +40189,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &278 + - &280 name: project_number description: The project's number. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *276 + schema: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40061,8 +40226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -40096,7 +40261,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &286 title: Projects v2 Item description: An item belonging to a project type: object @@ -40109,8 +40274,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *86 - - &480 + - *88 + - &482 title: Pull Request Simple description: Pull Request Simple type: object @@ -40216,8 +40381,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true active_lock_reason: type: string @@ -40260,7 +40425,7 @@ paths: items: *4 requested_teams: type: array - items: *195 + items: *197 head: type: object properties: @@ -40268,7 +40433,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -40291,7 +40456,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -40310,7 +40475,7 @@ paths: _links: type: object properties: - comments: &281 + comments: &283 title: Link description: Hypermedia Link type: object @@ -40319,13 +40484,13 @@ paths: type: string required: - href - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + commits: *283 + statuses: *283 + html: *283 + issue: *283 + review_comments: *283 + review_comment: *283 + self: *283 required: - comments - commits @@ -40335,8 +40500,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: &593 + author_association: *85 + auto_merge: &595 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40438,7 +40603,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &283 + content_type: &285 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -40478,7 +40643,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &285 + draft_issue: &287 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -40552,8 +40717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *278 - - *76 + - *280 + - *78 - *17 - *47 - *48 @@ -40564,7 +40729,7 @@ paths: application/json: schema: type: array - items: &282 + items: &284 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -40714,7 +40879,7 @@ paths: - updated_at - project_url examples: - default: &720 + default: &722 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40825,7 +40990,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40844,8 +41009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *278 - - *76 + - *280 + - *78 requestBody: required: true content: @@ -40891,7 +41056,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &721 + items: &723 type: object properties: name: @@ -40928,7 +41093,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &722 + iteration_configuration: &724 type: object description: The configuration for iteration fields. properties: @@ -40978,7 +41143,7 @@ paths: value: name: Due date data_type: date - single_select_field: &723 + single_select_field: &725 summary: Create a single select field value: name: Priority @@ -41005,7 +41170,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &724 + iteration_field: &726 summary: Create an iteration field value: name: Sprint @@ -41029,9 +41194,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *282 + schema: *284 examples: - text_field: &725 + text_field: &727 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41040,7 +41205,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: &726 + number_field: &728 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41049,7 +41214,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: &727 + date_field: &729 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41058,7 +41223,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: &728 + single_select_field: &730 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41092,7 +41257,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &729 + iteration_field: &731 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41137,23 +41302,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *278 - - &730 + - *280 + - &732 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: &731 + default: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41188,7 +41353,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41209,8 +41374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *278 - - *76 + - *280 + - *78 - 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. @@ -41242,7 +41407,7 @@ paths: application/json: schema: type: array - items: &286 + items: &288 title: Projects v2 Item description: An item belonging to a project type: object @@ -41258,7 +41423,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: *283 + content_type: *285 content: type: object additionalProperties: true @@ -41301,7 +41466,7 @@ paths: - updated_at - archived_at examples: - default: &287 + default: &289 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -41978,7 +42143,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41998,8 +42163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -42069,22 +42234,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *287 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *287 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *287 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *287 '304': *37 '403': *29 '401': *25 @@ -42104,9 +42269,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *278 - - *76 - - &288 + - *280 + - *78 + - &290 name: item_id description: The unique identifier of the project item. in: path @@ -42132,11 +42297,11 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -42155,9 +42320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *278 - - *76 - - *288 + - *280 + - *78 + - *290 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -42227,13 +42392,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *289 + number_field: *289 + date_field: *289 + single_select_field: *289 + iteration_field: *289 '401': *25 '403': *29 '404': *6 @@ -42253,9 +42418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *278 - - *76 - - *288 + - *280 + - *78 + - *290 responses: '204': description: Response @@ -42278,8 +42443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true content: @@ -42350,7 +42515,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &712 + schema: &714 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42448,7 +42613,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &289 + value: &291 value: id: 1 number: 1 @@ -42494,10 +42659,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *289 + value: *291 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *291 '304': *37 '403': *29 '401': *25 @@ -42525,9 +42690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *278 - - *76 - - &732 + - *280 + - *78 + - &734 name: view_number description: The number that identifies the project view. in: path @@ -42559,11 +42724,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -42586,7 +42751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -42594,7 +42759,7 @@ paths: application/json: schema: type: array - items: &290 + items: &292 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -42662,7 +42827,7 @@ paths: - property_name - value_type examples: - default: &291 + default: &293 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42711,7 +42876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -42722,7 +42887,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *290 + items: *292 minItems: 1 maxItems: 100 required: @@ -42752,9 +42917,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *291 + default: *293 '403': *29 '404': *6 x-github: @@ -42775,8 +42940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *76 - - &292 + - *78 + - &294 name: custom_property_name description: The custom property name in: path @@ -42788,9 +42953,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: &293 + default: &295 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42824,8 +42989,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: - - *76 - - *292 + - *78 + - *294 requestBody: required: true content: @@ -42896,9 +43061,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: *293 + default: *295 '403': *29 '404': *6 x-github: @@ -42921,8 +43086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *76 - - *292 + - *78 + - *294 responses: '204': *61 '403': *29 @@ -42945,7 +43110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 - *17 - *19 - name: repository_query @@ -42983,7 +43148,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &294 + items: &296 title: Custom Property Value description: Custom property name and associated value type: object @@ -43022,7 +43187,7 @@ paths: - property_name: team value: octocat headers: - Link: *68 + Link: *70 '403': *29 '404': *6 x-github: @@ -43050,7 +43215,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: - - *76 + - *78 requestBody: required: true content: @@ -43070,7 +43235,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *294 + items: *296 required: - repository_names - properties @@ -43111,7 +43276,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *76 + - *78 - *17 - *19 responses: @@ -43123,9 +43288,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43142,8 +43307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if user is a public member @@ -43167,8 +43332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -43189,8 +43354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -43214,7 +43379,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *76 + - *78 - name: type description: Specifies the types of repositories you want returned. in: query @@ -43260,11 +43425,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43283,7 +43448,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *76 + - *78 requestBody: required: true content: @@ -43464,7 +43629,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &347 title: Full Repository description: Full Repository type: object @@ -43752,8 +43917,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *295 - required: *296 + properties: *297 + required: *298 nullable: true temp_clone_token: type: string @@ -43840,8 +44005,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -43850,8 +44015,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *80 - source: *80 + parent: *82 + source: *82 forks: type: integer master_branch: @@ -43868,7 +44033,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &485 + properties: &487 url: type: string format: uri @@ -43884,12 +44049,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &486 + required: &488 - url - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *299 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -43973,7 +44138,7 @@ paths: - network_count - subscribers_count examples: - default: &347 + default: &349 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44491,10 +44656,10 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - *17 - *19 - - &615 + - &617 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44512,7 +44677,7 @@ paths: application/json: schema: type: array - items: &324 + items: &326 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -44547,7 +44712,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &302 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -44560,7 +44725,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &303 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -44630,7 +44795,7 @@ paths: conditions: nullable: true anyOf: - - &298 + - &300 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -44654,7 +44819,7 @@ paths: match. items: type: string - - &302 + - &304 title: Organization ruleset conditions type: object description: |- @@ -44668,7 +44833,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -44702,7 +44867,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -44724,7 +44889,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -44737,7 +44902,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &301 title: Repository ruleset property targeting definition type: object @@ -44770,17 +44935,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *301 required: - repository_property rules: type: array - items: &616 + items: &618 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &305 title: creation description: Only allow users with bypass permission to create matching refs. @@ -44792,7 +44957,7 @@ paths: type: string enum: - creation - - &304 + - &306 title: update description: Only allow users with bypass permission to update matching refs. @@ -44813,7 +44978,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &307 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -44825,7 +44990,7 @@ paths: type: string enum: - deletion - - &306 + - &308 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -44837,7 +45002,7 @@ paths: type: string enum: - required_linear_history - - &614 + - &616 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44915,7 +45080,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &309 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -44939,7 +45104,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &310 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -44951,7 +45116,7 @@ paths: type: string enum: - required_signatures - - &309 + - &311 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -45057,7 +45222,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &312 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -45105,7 +45270,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &313 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -45117,7 +45282,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &314 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -45154,7 +45319,7 @@ paths: required: - operator - pattern - - &313 + - &315 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -45191,7 +45356,7 @@ paths: required: - operator - pattern - - &314 + - &316 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -45228,7 +45393,7 @@ paths: required: - operator - pattern - - &315 + - &317 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -45265,7 +45430,7 @@ paths: required: - operator - pattern - - &316 + - &318 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -45302,7 +45467,7 @@ paths: required: - operator - pattern - - &317 + - &319 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -45327,7 +45492,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &320 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -45351,7 +45516,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &321 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -45374,7 +45539,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &322 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -45399,7 +45564,7 @@ paths: maximum: 100 required: - max_file_size - - &321 + - &323 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -45449,7 +45614,7 @@ paths: - repository_id required: - workflows - - &322 + - &324 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -45510,7 +45675,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &325 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -45588,7 +45753,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 requestBody: description: Request body required: true @@ -45609,22 +45774,20 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *303 + conditions: *304 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &328 title: Repository Rule type: object description: A repository rule. oneOf: - - *303 - - *304 - *305 - *306 - *307 @@ -45644,6 +45807,8 @@ paths: - *321 - *322 - *323 + - *324 + - *325 required: - name - enforcement @@ -45681,9 +45846,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: &325 + default: &327 value: id: 21 name: super cool ruleset @@ -45738,8 +45903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *76 - - &617 + - *78 + - &619 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 @@ -45754,7 +45919,7 @@ paths: in: query schema: type: string - - &618 + - &620 name: time_period description: |- The time period to filter by. @@ -45770,14 +45935,14 @@ paths: - week - month default: day - - &619 + - &621 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 - - &620 + - &622 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45797,7 +45962,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &623 title: Rule Suites description: Response type: array @@ -45852,7 +46017,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &622 + default: &624 value: - id: 21 actor_id: 12 @@ -45895,8 +46060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *76 - - &623 + - *78 + - &625 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45912,7 +46077,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &626 title: Rule Suite description: Response type: object @@ -46011,7 +46176,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &625 + default: &627 value: id: 21 actor_id: 12 @@ -46072,7 +46237,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46084,9 +46249,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *325 + default: *327 '404': *6 '500': *55 put: @@ -46104,7 +46269,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46130,16 +46295,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *303 + conditions: *304 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *328 examples: default: value: @@ -46174,9 +46339,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *325 + default: *327 '404': *6 '422': *15 '500': *55 @@ -46195,7 +46360,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46218,7 +46383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *76 + - *78 - *17 - *19 - name: ruleset_id @@ -46234,7 +46399,7 @@ paths: application/json: schema: type: array - items: &327 + items: &329 title: Ruleset version type: object description: The historical version of a ruleset @@ -46258,7 +46423,7 @@ paths: type: string format: date-time examples: - default: &627 + default: &629 value: - version_id: 3 actor: @@ -46293,7 +46458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46311,9 +46476,9 @@ paths: description: Response content: application/json: - schema: &628 + schema: &630 allOf: - - *327 + - *329 - type: object required: - state @@ -46382,8 +46547,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *76 - - &629 + - *78 + - &631 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46394,7 +46559,7 @@ paths: enum: - open - resolved - - &630 + - &632 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46404,7 +46569,7 @@ paths: required: false schema: type: string - - &631 + - &633 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46415,7 +46580,7 @@ paths: required: false schema: type: string - - &632 + - &634 name: exclude_providers in: query description: |- @@ -46426,7 +46591,7 @@ paths: required: false schema: type: string - - &633 + - &635 name: providers in: query description: |- @@ -46437,7 +46602,7 @@ paths: required: false schema: type: string - - &634 + - &636 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46446,7 +46611,7 @@ paths: required: false schema: type: string - - &635 + - &637 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46465,7 +46630,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &636 + - &638 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. @@ -46480,7 +46645,7 @@ paths: - *62 - *19 - *17 - - &637 + - &639 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 @@ -46490,7 +46655,7 @@ paths: required: false schema: type: string - - &638 + - &640 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 @@ -46500,7 +46665,7 @@ paths: required: false schema: type: string - - &639 + - &641 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46509,7 +46674,7 @@ paths: required: false schema: type: string - - &640 + - &642 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46518,7 +46683,7 @@ paths: schema: type: boolean default: false - - &641 + - &643 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46527,7 +46692,7 @@ paths: schema: type: boolean default: false - - &642 + - &644 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46546,8 +46711,8 @@ paths: items: type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -46555,21 +46720,21 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &643 + state: &645 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: &644 + resolution: &646 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -46686,8 +46851,8 @@ paths: pull request. ' - oneOf: &645 - - &647 + oneOf: &647 + - &649 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46745,7 +46910,7 @@ paths: - blob_url - commit_sha - commit_url - - &648 + - &650 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. @@ -46800,7 +46965,7 @@ paths: - page_url - commit_sha - commit_url - - &649 + - &651 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46820,7 +46985,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &650 + - &652 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46840,7 +47005,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &651 + - &653 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46860,7 +47025,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &652 + - &654 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46874,7 +47039,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &653 + - &655 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46888,7 +47053,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &654 + - &656 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46902,7 +47067,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &655 + - &657 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. @@ -46922,7 +47087,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &656 + - &658 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. @@ -46942,7 +47107,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &657 + - &659 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. @@ -46962,7 +47127,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &658 + - &660 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. @@ -46982,7 +47147,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &659 + - &661 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. @@ -47206,9 +47371,9 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47233,7 +47398,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 responses: '200': description: Response @@ -47245,7 +47410,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &329 + pattern_config_version: &331 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -47254,7 +47419,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &328 + items: &330 type: object properties: token_type: @@ -47320,7 +47485,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *328 + items: *330 examples: default: value: @@ -47369,7 +47534,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 requestBody: required: true content: @@ -47377,7 +47542,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *331 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -47403,7 +47568,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *331 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -47457,7 +47622,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *76 + - *78 - *62 - name: sort description: The property to sort the results by. @@ -47501,7 +47666,7 @@ paths: application/json: schema: type: array - items: &663 + items: &665 description: A repository security advisory. type: object properties: @@ -47721,7 +47886,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 credits_detailed: type: array nullable: true @@ -47731,7 +47896,7 @@ paths: type: object properties: user: *4 - type: *330 + type: *332 state: type: string description: The state of the user's acceptance of the @@ -47755,7 +47920,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *195 + items: *197 private_fork: readOnly: true nullable: true @@ -47792,7 +47957,7 @@ paths: - private_fork additionalProperties: false examples: - default: &664 + default: &666 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -48171,7 +48336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *76 + - *78 responses: '200': description: Response @@ -48179,7 +48344,7 @@ paths: application/json: schema: type: array - items: *331 + items: *333 examples: default: value: @@ -48219,8 +48384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -48245,8 +48410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -48273,7 +48438,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Immutable releases settings response @@ -48322,7 +48487,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -48379,7 +48544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 - *19 - *17 responses: @@ -48397,9 +48562,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48418,7 +48583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 requestBody: required: true content: @@ -48467,8 +48632,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -48490,8 +48655,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -48514,7 +48679,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -48532,7 +48697,7 @@ paths: type: integer network_configurations: type: array - items: &332 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -48603,7 +48768,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48622,7 +48787,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: - - *76 + - *78 requestBody: required: true content: @@ -48678,9 +48843,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: &333 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -48708,8 +48873,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: - - *76 - - &334 + - *78 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -48721,11 +48886,11 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: *333 + default: *335 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48744,8 +48909,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: - - *76 - - *334 + - *78 + - *336 requestBody: required: true content: @@ -48798,9 +48963,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: *333 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48819,8 +48984,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: - - *76 - - *334 + - *78 + - *336 responses: '204': description: Response @@ -48843,7 +49008,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: - - *76 + - *78 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -48897,7 +49062,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48927,8 +49092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *76 - *78 + - *80 - 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`). @@ -48960,13 +49125,13 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '500': *55 '403': *29 '404': *6 - '422': *337 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48984,7 +49149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *76 + - *78 - *17 - *19 - name: team_type @@ -49006,11 +49171,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -49030,7 +49195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *76 + - *78 requestBody: required: true content: @@ -49102,7 +49267,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &340 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -49165,8 +49330,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 nullable: true members_count: type: integer @@ -49429,7 +49594,7 @@ paths: - repos_count - organization examples: - default: &339 + default: &341 value: id: 1 node_id: MDQ6VGVhbTE= @@ -49499,16 +49664,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *76 - *78 + - *80 responses: '200': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -49529,8 +49694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *76 - *78 + - *80 requestBody: required: false content: @@ -49592,16 +49757,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '201': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 '422': *15 '403': *29 @@ -49626,12 +49791,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response - '422': &340 + '422': &342 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -49654,8 +49819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -49665,12 +49830,12 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 - '422': *340 + Link: *70 + '422': *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49690,8 +49855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *76 - *78 + - *80 - name: role description: Filters members returned by their role in the team. in: query @@ -49714,9 +49879,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49744,15 +49909,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '200': description: Response content: application/json: - schema: &341 + schema: &343 title: Team Membership description: Team Membership type: object @@ -49779,7 +49944,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &679 + response-if-user-is-a-team-maintainer: &681 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49815,9 +49980,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 requestBody: required: false content: @@ -49842,9 +50007,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &680 + response-if-users-membership-with-team-is-now-pending: &682 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49879,9 +50044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '204': description: Response @@ -49907,8 +50072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -49918,11 +50083,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49949,16 +50114,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &681 + schema: &683 title: Team Repository description: A team's access to a repository. type: object @@ -49981,8 +50146,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true forks: type: integer @@ -50527,10 +50692,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 requestBody: required: false content: @@ -50575,10 +50740,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 responses: '204': description: Response @@ -50602,8 +50767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -50613,9 +50778,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: &682 + response-if-child-teams-exist: &684 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50643,7 +50808,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50668,7 +50833,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *76 + - *78 - name: security_product in: path description: The security feature to enable or disable. @@ -50769,7 +50934,7 @@ paths: resources: type: object properties: - core: &344 + core: &346 title: Rate Limit type: object properties: @@ -50786,21 +50951,21 @@ paths: - remaining - reset - used - graphql: *344 - search: *344 - code_search: *344 - source_import: *344 - integration_manifest: *344 - code_scanning_upload: *344 - actions_runner_registration: *344 - scim: *344 - dependency_snapshots: *344 - dependency_sbom: *344 - code_scanning_autofix: *344 + graphql: *346 + search: *346 + code_search: *346 + source_import: *346 + integration_manifest: *346 + code_scanning_upload: *346 + actions_runner_registration: *346 + scim: *346 + dependency_snapshots: *346 + dependency_sbom: *346 + code_scanning_autofix: *346 required: - core - search - rate: *344 + rate: *346 required: - rate - resources @@ -50905,14 +51070,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *345 + schema: *347 examples: default-response: summary: Default response @@ -51417,7 +51582,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *346 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51435,8 +51600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -51734,10 +51899,10 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 - '307': &348 + default: *349 + '307': &350 description: Temporary Redirect content: application/json: @@ -51766,8 +51931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -51789,7 +51954,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *348 + '307': *350 '404': *6 '409': *54 x-github: @@ -51813,11 +51978,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - - &381 + - &383 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51840,7 +52005,7 @@ paths: type: integer artifacts: type: array - items: &349 + items: &351 title: Artifact description: An artifact type: object @@ -51918,7 +52083,7 @@ paths: - expires_at - updated_at examples: - default: &382 + default: &384 value: total_count: 2 artifacts: @@ -51957,7 +52122,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51979,9 +52144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *342 - - *343 - - &350 + - *344 + - *345 + - &352 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51993,7 +52158,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *351 examples: default: value: @@ -52031,9 +52196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *342 - - *343 - - *350 + - *344 + - *345 + - *352 responses: '204': description: Response @@ -52057,9 +52222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *342 - - *343 - - *350 + - *344 + - *345 + - *352 - name: archive_format in: path required: true @@ -52069,11 +52234,11 @@ paths: '302': description: Response headers: - Location: &504 + Location: &506 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': &545 + '410': &547 description: Gone content: application/json: @@ -52098,14 +52263,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &351 + schema: &353 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -52138,13 +52303,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *351 + schema: *353 examples: selected_actions: *42 responses: @@ -52173,14 +52338,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &352 + schema: &354 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -52213,13 +52378,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *352 + schema: *354 examples: selected_actions: *44 responses: @@ -52250,14 +52415,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *353 + schema: *355 examples: default: value: @@ -52283,11 +52448,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - - &354 + - &356 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 @@ -52321,7 +52486,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &357 title: Repository actions caches description: Repository actions caches type: object @@ -52363,7 +52528,7 @@ paths: - total_count - actions_caches examples: - default: &356 + default: &358 value: total_count: 1 actions_caches: @@ -52375,7 +52540,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52395,23 +52560,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: - - *342 - - *343 + - *344 + - *345 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *354 + - *356 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *356 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52431,8 +52596,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: - - *342 - - *343 + - *344 + - *345 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52463,9 +52628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *342 - - *343 - - &357 + - *344 + - *345 + - &359 name: job_id description: The unique identifier of the job. in: path @@ -52477,7 +52642,7 @@ paths: description: Response content: application/json: - schema: &385 + schema: &387 title: Job description: Information of a job execution in a workflow run type: object @@ -52784,9 +52949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *342 - - *343 - - *357 + - *344 + - *345 + - *359 responses: '302': description: Response @@ -52814,9 +52979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *342 - - *343 - - *357 + - *344 + - *345 + - *359 requestBody: required: false content: @@ -52837,7 +53002,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -52861,8 +53026,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Status response @@ -52912,8 +53077,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -52947,7 +53112,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -52976,8 +53141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -52995,7 +53160,7 @@ paths: type: integer secrets: type: array - items: &387 + items: &389 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -53015,7 +53180,7 @@ paths: - created_at - updated_at examples: - default: &388 + default: &390 value: total_count: 2 secrets: @@ -53026,7 +53191,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53048,9 +53213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *342 - - *343 - - *358 + - *344 + - *345 + - *360 - *19 responses: '200': @@ -53067,7 +53232,7 @@ paths: type: integer variables: type: array - items: &391 + items: &393 title: Actions Variable type: object properties: @@ -53097,7 +53262,7 @@ paths: - created_at - updated_at examples: - default: &392 + default: &394 value: total_count: 2 variables: @@ -53110,7 +53275,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53130,8 +53295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -53140,12 +53305,12 @@ paths: schema: type: object properties: - enabled: &360 + enabled: &362 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *144 - selected_actions_url: *359 - sha_pinning_required: *145 + allowed_actions: *146 + selected_actions_url: *361 + sha_pinning_required: *147 required: - enabled examples: @@ -53173,8 +53338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -53185,9 +53350,9 @@ paths: schema: type: object properties: - enabled: *360 - allowed_actions: *144 - sha_pinning_required: *145 + enabled: *362 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled examples: @@ -53217,14 +53382,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &361 + schema: &363 type: object properties: access_level: @@ -53241,7 +53406,7 @@ paths: required: - access_level examples: - default: &362 + default: &364 value: access_level: organization x-github: @@ -53265,15 +53430,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *361 + schema: *363 examples: - default: *362 + default: *364 responses: '204': description: Response @@ -53297,14 +53462,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -53328,8 +53493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Empty response for successful settings update @@ -53339,7 +53504,7 @@ paths: required: true content: application/json: - schema: *364 + schema: *366 examples: default: summary: Set retention days @@ -53363,16 +53528,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *146 + schema: *148 examples: - default: *365 + default: *367 '404': *6 x-github: enabledForGitHubApps: true @@ -53391,8 +53556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -53402,7 +53567,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -53426,16 +53591,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *366 + schema: *368 examples: - default: *147 + default: *149 '403': *29 '404': *6 x-github: @@ -53455,15 +53620,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *367 + schema: *369 examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -53487,16 +53652,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *149 + schema: *151 examples: - default: *150 + default: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53515,8 +53680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -53524,9 +53689,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53548,16 +53713,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53578,8 +53743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Success response @@ -53590,9 +53755,9 @@ paths: required: true content: application/json: - schema: *369 + schema: *371 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53619,8 +53784,8 @@ paths: in: query schema: type: string - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -53638,11 +53803,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53664,8 +53829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -53673,9 +53838,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *371 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53697,8 +53862,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -53741,7 +53906,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *372 + '201': *374 '404': *6 '422': *7 '409': *54 @@ -53772,16 +53937,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *373 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53809,16 +53974,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53840,17 +54005,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: *375 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53871,9 +54036,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: '204': description: Response @@ -53899,11 +54064,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: - '200': *165 + '200': *167 '404': *6 x-github: githubCloudOnly: false @@ -53925,9 +54090,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 requestBody: required: true content: @@ -53951,7 +54116,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -53975,9 +54140,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 requestBody: required: true content: @@ -54002,7 +54167,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -54026,11 +54191,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: - '200': *376 + '200': *378 '404': *6 x-github: githubCloudOnly: false @@ -54057,12 +54222,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: - - *342 - - *343 - - *160 - - *377 + - *344 + - *345 + - *162 + - *379 responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -54088,9 +54253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *342 - - *343 - - &395 + - *344 + - *345 + - &397 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. @@ -54098,7 +54263,7 @@ paths: required: false schema: type: string - - &396 + - &398 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -54106,7 +54271,7 @@ paths: required: false schema: type: string - - &397 + - &399 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -54115,7 +54280,7 @@ paths: required: false schema: type: string - - &398 + - &400 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 @@ -54142,7 +54307,7 @@ paths: - pending - *17 - *19 - - &399 + - &401 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)." @@ -54151,7 +54316,7 @@ paths: schema: type: string format: date-time - - &378 + - &380 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -54160,13 +54325,13 @@ paths: schema: type: boolean default: false - - &400 + - &402 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &401 + - &403 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -54189,7 +54354,7 @@ paths: type: integer workflow_runs: type: array - items: &379 + items: &381 title: Workflow Run description: An invocation of a workflow type: object @@ -54284,7 +54449,7 @@ paths: that triggered the run. type: array nullable: true - items: *91 + items: *93 created_at: type: string format: date-time @@ -54337,7 +54502,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &423 + properties: &425 id: type: string description: SHA for the commit @@ -54388,7 +54553,7 @@ paths: - name - email nullable: true - required: &424 + required: &426 - id - tree_id - message @@ -54396,8 +54561,8 @@ paths: - author - committer nullable: true - repository: *159 - head_repository: *159 + repository: *161 + head_repository: *161 head_repository_id: type: integer example: 5 @@ -54435,7 +54600,7 @@ paths: - workflow_url - pull_requests examples: - default: &402 + default: &404 value: total_count: 1 workflow_runs: @@ -54649,7 +54814,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54671,24 +54836,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *342 - - *343 - - &380 + - *344 + - *345 + - &382 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *378 + - *380 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &383 + default: &385 value: id: 30433642 name: Build @@ -54929,9 +55094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '204': description: Response @@ -54954,9 +55119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -55075,15 +55240,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: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55110,12 +55275,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 - *17 - *19 - - *381 + - *383 - *62 responses: '200': @@ -55132,11 +55297,11 @@ paths: type: integer artifacts: type: array - items: *349 + items: *351 examples: - default: *382 + default: *384 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55158,25 +55323,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *342 - - *343 - - *380 - - &384 + - *344 + - *345 + - *382 + - &386 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *378 + - *380 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *383 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55199,10 +55364,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *342 - - *343 - - *380 - - *384 + - *344 + - *345 + - *382 + - *386 - *17 - *19 responses: @@ -55220,9 +55385,9 @@ paths: type: integer jobs: type: array - items: *385 + items: *387 examples: - default: &386 + default: &388 value: total_count: 1 jobs: @@ -55311,7 +55476,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -55335,10 +55500,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *342 - - *343 - - *380 - - *384 + - *344 + - *345 + - *382 + - *386 responses: '302': description: Response @@ -55366,15 +55531,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55401,9 +55566,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: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: true content: @@ -55470,15 +55635,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55505,9 +55670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 - 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 @@ -55537,11 +55702,11 @@ paths: type: integer jobs: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55564,9 +55729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '302': description: Response @@ -55593,9 +55758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '204': description: Response @@ -55622,9 +55787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -55684,7 +55849,7 @@ paths: items: type: object properties: - type: &511 + type: &513 type: string description: The type of reviewer. enum: @@ -55694,7 +55859,7 @@ paths: reviewer: anyOf: - *4 - - *195 + - *197 required: - environment - wait_timer @@ -55769,9 +55934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: true content: @@ -55818,12 +55983,12 @@ paths: application/json: schema: type: array - items: &506 + items: &508 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &752 + properties: &754 url: type: string format: uri @@ -55906,9 +56071,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - required: &753 + properties: *83 + required: *84 + required: &755 - id - node_id - sha @@ -55924,7 +56089,7 @@ paths: - created_at - updated_at examples: - default: &507 + default: &509 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55980,9 +56145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: false content: @@ -56003,7 +56168,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56026,9 +56191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: false content: @@ -56049,7 +56214,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56081,9 +56246,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -56220,8 +56385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -56239,11 +56404,11 @@ paths: type: integer secrets: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56266,16 +56431,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *390 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56297,17 +56462,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: &524 + default: &526 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56333,9 +56498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -56366,7 +56531,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56392,9 +56557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -56419,9 +56584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *342 - - *343 - - *358 + - *344 + - *345 + - *360 - *19 responses: '200': @@ -56438,11 +56603,11 @@ paths: type: integer variables: type: array - items: *391 + items: *393 examples: - default: *392 + default: *394 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56463,8 +56628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -56491,7 +56656,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56516,17 +56681,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &525 + default: &527 value: name: USERNAME value: octocat @@ -56552,9 +56717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 requestBody: required: true content: @@ -56596,9 +56761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 responses: '204': description: Response @@ -56623,8 +56788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -56642,7 +56807,7 @@ paths: type: integer workflows: type: array - items: &393 + items: &395 title: Workflow description: A GitHub Actions workflow type: object @@ -56726,7 +56891,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56749,9 +56914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *342 - - *343 - - &394 + - *344 + - *345 + - &396 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56766,7 +56931,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: default: value: @@ -56799,9 +56964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '204': description: Response @@ -56826,9 +56991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -56915,9 +57080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '204': description: Response @@ -56944,19 +57109,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *342 - - *343 - - *394 - - *395 + - *344 + - *345 - *396 - *397 - *398 - - *17 - - *19 - *399 - - *378 - *400 + - *17 + - *19 - *401 + - *380 + - *402 + - *403 responses: '200': description: Response @@ -56972,11 +57137,11 @@ paths: type: integer workflow_runs: type: array - items: *379 + items: *381 examples: - default: *402 + default: *404 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57006,9 +57171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '200': description: Response @@ -57069,8 +57234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *342 - - *343 + - *344 + - *345 - *62 - *17 - *47 @@ -57215,7 +57380,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *7 x-github: githubCloudOnly: false @@ -57234,8 +57399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -57247,9 +57412,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -57272,8 +57437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *342 - - *343 + - *344 + - *345 - name: assignee in: path required: true @@ -57309,8 +57474,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -57420,8 +57585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *47 - *48 @@ -57478,7 +57643,7 @@ paths: initiator: type: string examples: - default: *403 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57498,8 +57663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -57507,7 +57672,7 @@ paths: application/json: schema: type: array - items: &404 + items: &406 title: Autolink reference description: An autolink reference. type: object @@ -57561,8 +57726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -57601,9 +57766,9 @@ paths: description: response content: application/json: - schema: *404 + schema: *406 examples: - default: &405 + default: &407 value: id: 1 key_prefix: TICKET- @@ -57634,9 +57799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *342 - - *343 - - &406 + - *344 + - *345 + - &408 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57648,9 +57813,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *406 examples: - default: *405 + default: *407 '404': *6 x-github: githubCloudOnly: false @@ -57670,9 +57835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *342 - - *343 - - *406 + - *344 + - *345 + - *408 responses: '204': description: Response @@ -57696,8 +57861,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response if Dependabot is enabled @@ -57745,8 +57910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -57767,8 +57932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -57788,8 +57953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *342 - - *343 + - *344 + - *345 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57827,7 +57992,7 @@ paths: - url protected: type: boolean - protection: &408 + protection: &410 title: Branch Protection description: Branch Protection type: object @@ -57869,7 +58034,7 @@ paths: required: - contexts - checks - enforce_admins: &411 + enforce_admins: &413 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57884,7 +58049,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &413 + required_pull_request_reviews: &415 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57905,7 +58070,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *195 + items: *197 apps: description: The list of apps with review dismissal access. @@ -57934,7 +58099,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *195 + items: *197 apps: description: The list of apps allowed to bypass pull request requirements. @@ -57960,7 +58125,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &410 + restrictions: &412 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58023,7 +58188,7 @@ paths: type: string teams: type: array - items: *195 + items: *197 apps: type: array items: @@ -58219,7 +58384,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -58237,9 +58402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *342 - - *343 - - &409 + - *344 + - *345 + - &411 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). @@ -58253,14 +58418,14 @@ paths: description: Response content: application/json: - schema: &419 + schema: &421 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &476 + commit: &478 title: Commit description: Commit type: object @@ -58294,7 +58459,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &407 + properties: &409 name: type: string example: '"Chris Wanstrath"' @@ -58310,7 +58475,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true message: type: string @@ -58331,7 +58496,7 @@ paths: required: - sha - url - verification: &531 + verification: &533 title: Verification type: object properties: @@ -58365,12 +58530,12 @@ paths: nullable: true oneOf: - *4 - - *168 + - *170 committer: nullable: true oneOf: - *4 - - *168 + - *170 parents: type: array items: @@ -58401,7 +58566,7 @@ paths: type: integer files: type: array - items: &489 + items: &491 title: Diff Entry description: Diff Entry type: object @@ -58485,7 +58650,7 @@ paths: - self protected: type: boolean - protection: *408 + protection: *410 protection_url: type: string format: uri @@ -58592,7 +58757,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *346 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -58614,15 +58779,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: default: value: @@ -58816,9 +58981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -59073,7 +59238,7 @@ paths: url: type: string format: uri - required_status_checks: &416 + required_status_checks: &418 title: Status Check Policy description: Status Check Policy type: object @@ -59149,7 +59314,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -59167,7 +59332,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -59225,7 +59390,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *410 + restrictions: *412 required_conversation_resolution: type: object properties: @@ -59337,9 +59502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59364,17 +59529,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: &412 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59396,17 +59561,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: *412 + default: *414 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59425,9 +59590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59452,17 +59617,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &414 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59558,9 +59723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59658,9 +59823,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *414 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -59681,9 +59846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59710,17 +59875,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: &415 + default: &417 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59743,17 +59908,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: *415 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -59773,9 +59938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59800,17 +59965,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: &417 + default: &419 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59836,9 +60001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59890,9 +60055,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: *417 + default: *419 '404': *6 '422': *15 x-github: @@ -59914,9 +60079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59940,9 +60105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -59976,9 +60141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60045,9 +60210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60111,9 +60276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: content: application/json: @@ -60179,15 +60344,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *410 + schema: *412 examples: default: value: @@ -60278,9 +60443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -60303,9 +60468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -60315,7 +60480,7 @@ paths: type: array items: *5 examples: - default: &418 + default: &420 value: - id: 1 slug: octoapp @@ -60372,9 +60537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60408,7 +60573,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -60429,9 +60594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60465,7 +60630,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -60486,9 +60651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60522,7 +60687,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -60544,9 +60709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -60554,9 +60719,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '404': *6 x-github: githubCloudOnly: false @@ -60576,9 +60741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60614,9 +60779,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60637,9 +60802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60675,9 +60840,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60698,9 +60863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: content: application/json: @@ -60735,9 +60900,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60759,9 +60924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -60771,7 +60936,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '404': *6 x-github: githubCloudOnly: false @@ -60795,9 +60960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60830,7 +60995,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60855,9 +61020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60890,7 +61055,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60915,9 +61080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60950,7 +61115,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60977,9 +61142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -61001,7 +61166,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: default: value: @@ -61117,8 +61282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -61397,7 +61562,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &422 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61508,16 +61673,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 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: *91 - deployment: &745 + items: *93 + deployment: &747 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61584,8 +61749,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -61797,9 +61962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *342 - - *343 - - &421 + - *344 + - *345 + - &423 name: check_run_id description: The unique identifier of the check run. in: path @@ -61811,9 +61976,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: &422 + default: &424 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -61913,9 +62078,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 requestBody: required: true content: @@ -62155,9 +62320,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *422 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62177,9 +62342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 - *17 - *19 responses: @@ -62254,7 +62419,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62274,15 +62439,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -62320,8 +62485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -62343,7 +62508,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &425 + schema: &427 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62407,7 +62572,7 @@ paths: nullable: true pull_requests: type: array - items: *91 + items: *93 nullable: true app: title: GitHub app @@ -62418,9 +62583,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - repository: *159 + properties: *83 + required: *84 + repository: *161 created_at: type: string format: date-time @@ -62429,12 +62594,12 @@ paths: type: string format: date-time nullable: true - head_commit: &773 + head_commit: &775 title: Simple Commit description: A commit. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 latest_check_runs_count: type: integer check_runs_url: @@ -62462,7 +62627,7 @@ paths: - check_runs_url - pull_requests examples: - default: &426 + default: &428 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -62753,9 +62918,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62774,8 +62939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -62836,7 +63001,7 @@ paths: required: - app_id - setting - repository: *159 + repository: *161 examples: default: value: @@ -63084,9 +63249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *342 - - *343 - - &427 + - *344 + - *345 + - &429 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63098,9 +63263,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63123,17 +63288,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *342 - - *343 - - *427 - - &482 + - *344 + - *345 + - *429 + - &484 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &483 + - &485 name: status description: Returns check runs with the specified `status`. in: query @@ -63172,9 +63337,9 @@ paths: type: integer check_runs: type: array - items: *420 + items: *422 examples: - default: &484 + default: &486 value: total_count: 1 check_runs: @@ -63256,7 +63421,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63276,15 +63441,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *342 - - *343 - - *427 + - *344 + - *345 + - *429 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -63311,21 +63476,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *342 - - *343 - - *428 - - *429 + - *344 + - *345 + - *430 + - *431 - *19 - *17 - - &446 + - &448 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: *430 - - &447 + schema: *432 + - &449 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63350,13 +63515,13 @@ paths: be returned. in: query required: false - schema: *431 + schema: *433 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *432 + schema: *434 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -63375,14 +63540,14 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *433 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *435 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -63390,12 +63555,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *434 - dismissed_comment: *435 - rule: *436 - tool: *437 - most_recent_instance: *438 + dismissed_at: *185 + dismissed_reason: *436 + dismissed_comment: *437 + rule: *438 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -63521,14 +63686,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &439 + '403': &441 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63548,9 +63713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *342 - - *343 - - &440 + - *344 + - *345 + - &442 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63558,23 +63723,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: &441 + schema: &443 type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *433 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *435 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -63582,9 +63747,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *434 - dismissed_comment: *435 + dismissed_at: *185 + dismissed_reason: *436 + dismissed_comment: *437 rule: type: object properties: @@ -63638,8 +63803,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *437 - most_recent_instance: *438 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -63738,9 +63903,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63758,9 +63923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: true content: @@ -63775,8 +63940,8 @@ paths: enum: - open - dismissed - dismissed_reason: *434 - dismissed_comment: *435 + dismissed_reason: *436 + dismissed_comment: *437 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -63804,7 +63969,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -63880,14 +64045,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &445 + '403': &447 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': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63907,15 +64072,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 responses: '200': description: Response content: application/json: - schema: &442 + schema: &444 type: object properties: status: @@ -63941,13 +64106,13 @@ paths: - description - started_at examples: - default: &443 + default: &445 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &444 + '400': &446 description: Bad Request content: application/json: @@ -63958,9 +64123,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': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63983,29 +64148,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 responses: '200': description: OK content: application/json: - schema: *442 + schema: *444 examples: - default: *443 + default: *445 '202': description: Accepted content: application/json: - schema: *442 + schema: *444 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *444 + '400': *446 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64015,7 +64180,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64037,9 +64202,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: false content: @@ -64084,12 +64249,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *444 - '403': *445 + '400': *446 + '403': *447 '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64109,13 +64274,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 - *19 - *17 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -64126,10 +64291,10 @@ paths: items: type: object properties: - ref: *430 - analysis_key: *448 - environment: *449 - category: *450 + ref: *432 + analysis_key: *450 + environment: *451 + category: *452 state: type: string description: State of a code scanning alert instance. @@ -64144,7 +64309,7 @@ paths: properties: text: type: string - location: *451 + location: *453 html_url: type: string classifications: @@ -64152,7 +64317,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: *452 + items: *454 examples: default: value: @@ -64189,9 +64354,9 @@ paths: end_column: 50 classifications: - source - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64223,25 +64388,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *342 - - *343 - - *428 - - *429 + - *344 + - *345 + - *430 + - *431 - *19 - *17 - - *447 + - *449 - 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: *430 + schema: *432 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &453 + schema: &455 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -64262,23 +64427,23 @@ paths: application/json: schema: type: array - items: &454 + items: &456 type: object properties: - ref: *430 - commit_sha: &462 + ref: *432 + commit_sha: &464 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: *448 + analysis_key: *450 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *450 + category: *452 error: type: string example: error reading field xyz @@ -64302,8 +64467,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *453 - tool: *437 + sarif_id: *455 + tool: *439 deletable: type: boolean warning: @@ -64364,9 +64529,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64400,8 +64565,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: - - *342 - - *343 + - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64414,7 +64579,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: response: summary: application/json response @@ -64468,14 +64633,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *439 + '403': *441 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64555,8 +64720,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: - - *342 - - *343 + - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64609,9 +64774,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': *445 + '403': *447 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64631,8 +64796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -64640,7 +64805,7 @@ paths: application/json: schema: type: array - items: &455 + items: &457 title: CodeQL Database description: A CodeQL database. type: object @@ -64751,9 +64916,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': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64780,8 +64945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -64793,7 +64958,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -64825,11 +64990,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': &493 + '302': &495 description: Found - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64849,8 +65014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *342 - - *343 + - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -64860,9 +65025,9 @@ paths: responses: '204': description: Response - '403': *445 + '403': *447 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64888,8 +65053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -64898,7 +65063,7 @@ paths: type: object additionalProperties: false properties: - language: &456 + language: &458 type: string description: The language targeted by the CodeQL query enum: @@ -64978,7 +65143,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &460 + schema: &462 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -64988,7 +65153,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *456 + query_language: *458 query_pack_url: type: string description: The download url for the query pack. @@ -65035,7 +65200,7 @@ paths: items: type: object properties: - repository: &457 + repository: &459 title: Repository Identifier description: Repository Identifier type: object @@ -65071,7 +65236,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &461 + analysis_status: &463 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65103,7 +65268,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &458 + access_mismatch_repos: &460 type: object properties: repository_count: @@ -65117,7 +65282,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: *457 + items: *459 required: - repository_count - repositories @@ -65139,8 +65304,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *458 - over_limit_repos: *458 + no_codeql_db_repos: *460 + over_limit_repos: *460 required: - access_mismatch_repos - not_found_repos @@ -65156,7 +65321,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &459 + value: &461 summary: Default response value: id: 1 @@ -65302,17 +65467,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *459 + value: *461 repository_lists: summary: Response for a successful variant analysis submission - value: *459 + value: *461 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65333,8 +65498,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: - - *342 - - *343 + - *344 + - *345 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65346,11 +65511,11 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: - default: *459 + default: *461 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65371,7 +65536,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: - - *342 + - *344 - name: repo in: path description: The name of the controller repository. @@ -65406,7 +65571,7 @@ paths: type: object properties: repository: *67 - analysis_status: *461 + analysis_status: *463 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65510,7 +65675,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65531,8 +65696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -65617,9 +65782,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65638,8 +65803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -65706,7 +65871,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -65731,7 +65896,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *445 + '403': *447 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -65745,7 +65910,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65802,8 +65967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -65811,7 +65976,7 @@ paths: schema: type: object properties: - commit_sha: *462 + commit_sha: *464 ref: type: string description: |- @@ -65869,7 +66034,7 @@ paths: schema: type: object properties: - id: *453 + id: *455 url: type: string description: The REST API URL for checking the status of the upload. @@ -65883,11 +66048,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': *445 + '403': *447 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65906,8 +66071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *342 - - *343 + - *344 + - *345 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -65953,10 +66118,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': *439 + '403': *441 '404': description: Not Found if the sarif id does not match any upload - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65978,8 +66143,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -66060,8 +66225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *342 - - *343 + - *344 + - *345 - 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 @@ -66181,8 +66346,8 @@ paths: parameters: - *17 - *19 - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -66198,7 +66363,7 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: default: value: @@ -66496,8 +66661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -66560,22 +66725,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66599,8 +66764,8 @@ paths: parameters: - *17 - *19 - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -66664,8 +66829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66700,14 +66865,14 @@ paths: type: integer machines: type: array - items: &688 + items: &690 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *464 - required: *465 + properties: *466 + required: *467 examples: - default: &689 + default: &691 value: total_count: 2 machines: @@ -66747,8 +66912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *342 - - *343 + - *344 + - *345 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -66832,8 +66997,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: - - *342 - - *343 + - *344 + - *345 - 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 @@ -66878,7 +67043,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66899,8 +67064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -66918,7 +67083,7 @@ paths: type: integer secrets: type: array - items: &469 + items: &471 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -66938,9 +67103,9 @@ paths: - created_at - updated_at examples: - default: *466 + default: *468 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66961,16 +67126,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: *468 + default: *470 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66990,17 +67155,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: *470 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67020,9 +67185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -67050,7 +67215,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -67074,9 +67239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -67104,8 +67269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *342 - - *343 + - *344 + - *345 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67147,7 +67312,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &471 + properties: &473 login: type: string example: octocat @@ -67240,7 +67405,7 @@ paths: user_view_type: type: string example: public - required: &472 + required: &474 - avatar_url - events_url - followers_url @@ -67289,7 +67454,7 @@ paths: admin: false role_name: write headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -67314,9 +67479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '204': description: Response if user is a collaborator @@ -67362,9 +67527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 requestBody: required: false content: @@ -67390,7 +67555,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &544 + schema: &546 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67401,7 +67566,7 @@ paths: example: 42 type: integer format: int64 - repository: *159 + repository: *161 invitee: title: Simple User description: A GitHub user. @@ -67579,7 +67744,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *128 + schema: *130 '403': *29 x-github: triggersNotification: true @@ -67619,9 +67784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '204': description: No Content when collaborator was removed from the repository. @@ -67652,9 +67817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '200': description: if user has admin permissions @@ -67674,8 +67839,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *471 - required: *472 + properties: *473 + required: *474 nullable: true required: - permission @@ -67730,8 +67895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -67741,7 +67906,7 @@ paths: application/json: schema: type: array - items: &473 + items: &475 title: Commit Comment description: Commit Comment type: object @@ -67782,8 +67947,8 @@ paths: updated_at: type: string format: date-time - author_association: *83 - reactions: *84 + author_association: *85 + reactions: *86 required: - url - html_url @@ -67799,7 +67964,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &480 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67833,7 +67998,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67858,17 +68023,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *473 + schema: *475 examples: - default: &479 + default: &481 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67925,9 +68090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -67949,7 +68114,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *475 examples: default: value: @@ -68000,9 +68165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -68023,9 +68188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -68051,7 +68216,7 @@ paths: application/json: schema: type: array - items: &474 + items: &476 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -68094,7 +68259,7 @@ paths: - content - created_at examples: - default: &548 + default: &550 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68120,7 +68285,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -68139,9 +68304,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -68173,9 +68338,9 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: &475 + default: &477 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68204,9 +68369,9 @@ paths: description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -68228,10 +68393,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *342 - - *343 - - *102 - - &549 + - *344 + - *345 + - *104 + - &551 name: reaction_id description: The unique identifier of the reaction. in: path @@ -68286,8 +68451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *342 - - *343 + - *344 + - *345 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68343,9 +68508,9 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: &600 + default: &602 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68415,7 +68580,7 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *68 + Link: *70 '500': *55 '400': *14 '404': *6 @@ -68439,9 +68604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *342 - - *343 - - &477 + - *344 + - *345 + - &479 name: commit_sha description: The SHA of the commit. in: path @@ -68513,9 +68678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 - *17 - *19 responses: @@ -68525,11 +68690,11 @@ paths: application/json: schema: type: array - items: *473 + items: *475 examples: - default: *478 + default: *480 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68555,9 +68720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 requestBody: required: true content: @@ -68592,9 +68757,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *475 examples: - default: *479 + default: *481 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68622,9 +68787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 - *17 - *19 responses: @@ -68634,9 +68799,9 @@ paths: application/json: schema: type: array - items: *480 + items: *482 examples: - default: &592 + default: &594 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69115,7 +69280,7 @@ paths: auto_merge: draft: false headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -69173,11 +69338,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 - - &481 + - &483 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)" @@ -69192,9 +69357,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *478 examples: - default: &579 + default: &581 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69282,7 +69447,7 @@ paths: schema: type: string examples: - default: &490 + default: &492 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -69295,7 +69460,7 @@ paths: schema: type: string examples: - default: &491 + default: &493 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -69322,7 +69487,7 @@ paths: '422': *15 '404': *6 '500': *55 - '503': *120 + '503': *122 '409': *54 x-github: githubCloudOnly: false @@ -69348,11 +69513,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *342 - - *343 - - *481 - - *482 + - *344 + - *345 - *483 + - *484 + - *485 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69386,11 +69551,11 @@ paths: type: integer check_runs: type: array - items: *420 + items: *422 examples: - default: *484 + default: *486 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69413,9 +69578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69423,7 +69588,7 @@ paths: schema: type: integer example: 1 - - *482 + - *484 - *17 - *19 responses: @@ -69441,7 +69606,7 @@ paths: type: integer check_suites: type: array - items: *425 + items: *427 examples: default: value: @@ -69616,7 +69781,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69641,9 +69806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - *17 - *19 responses: @@ -69710,7 +69875,7 @@ paths: type: string total_count: type: integer - repository: *159 + repository: *161 commit_url: type: string format: uri @@ -69841,9 +70006,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - *17 - *19 responses: @@ -69853,7 +70018,7 @@ paths: application/json: schema: type: array - items: &668 + items: &670 title: Status description: The status of a commit. type: object @@ -69933,8 +70098,8 @@ paths: type: User site_admin: false headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69962,8 +70127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -69992,20 +70157,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *485 - required: *486 + properties: *487 + required: *488 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &487 + properties: &489 url: type: string format: uri html_url: type: string format: uri - required: &488 + required: &490 - url - html_url nullable: true @@ -70013,32 +70178,32 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true contributing: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true readme: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true issue_template: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true pull_request_template: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true required: - code_of_conduct @@ -70165,8 +70330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 - name: basehead @@ -70209,8 +70374,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *476 - merge_base_commit: *476 + base_commit: *478 + merge_base_commit: *478 status: type: string enum: @@ -70230,10 +70395,10 @@ paths: example: 6 commits: type: array - items: *476 + items: *478 files: type: array - items: *489 + items: *491 required: - url - html_url @@ -70479,15 +70644,15 @@ paths: schema: type: string examples: - default: *490 + default: *492 application/vnd.github.patch: schema: type: string examples: - default: *491 + default: *493 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70529,8 +70694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -70690,7 +70855,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &492 + response-if-content-is-a-file-github-object: &494 summary: Response if content is a file value: type: file @@ -70822,7 +70987,7 @@ paths: - size - type - url - - &605 + - &607 title: Content File description: Content File type: object @@ -71023,7 +71188,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *492 + response-if-content-is-a-file: *494 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71092,7 +71257,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *493 + '302': *495 '304': *37 x-github: githubCloudOnly: false @@ -71115,8 +71280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -71209,7 +71374,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &496 title: File Commit description: File Commit type: object @@ -71361,7 +71526,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: example-for-creating-a-file: value: @@ -71415,7 +71580,7 @@ paths: schema: oneOf: - *3 - - &526 + - &528 description: Repository rule violation was detected type: object properties: @@ -71436,7 +71601,7 @@ paths: items: type: object properties: - placeholder_id: &660 + placeholder_id: &662 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71468,8 +71633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -71530,7 +71695,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -71565,7 +71730,7 @@ paths: '422': *15 '404': *6 '409': *54 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71585,8 +71750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *342 - - *343 + - *344 + - *345 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -71686,7 +71851,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *68 + Link: *70 '204': description: Response if repository is empty '403': *29 @@ -71709,24 +71874,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *342 - - *343 - - *197 - - *198 + - *344 + - *345 - *199 - *200 - *201 + - *202 + - *203 - 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 - - *202 - - *495 - - *203 - *204 + - *497 - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -71738,11 +71903,11 @@ paths: application/json: schema: type: array - items: &499 + items: &501 type: object description: A Dependabot alert. properties: - number: *177 + number: *179 state: type: string description: The state of the Dependabot alert. @@ -71785,13 +71950,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *496 + security_advisory: *498 security_vulnerability: *66 - url: *180 - html_url: *181 - created_at: *178 - updated_at: *179 - dismissed_at: *183 + url: *182 + html_url: *183 + created_at: *180 + updated_at: *181 + dismissed_at: *185 dismissed_by: title: Simple User description: A GitHub user. @@ -71815,9 +71980,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *182 - auto_dismissed_at: *497 - dismissal_request: *498 + fixed_at: *184 + auto_dismissed_at: *499 + dismissal_request: *500 assignees: type: array description: The users assigned to this alert. @@ -72072,9 +72237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *342 - - *343 - - &500 + - *344 + - *345 + - &502 name: alert_number in: path description: |- @@ -72083,13 +72248,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -72221,9 +72386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *342 - - *343 - - *500 + - *344 + - *345 + - *502 requestBody: required: true content: @@ -72279,7 +72444,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -72409,8 +72574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -72428,7 +72593,7 @@ paths: type: integer secrets: type: array - items: &503 + items: &505 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72459,7 +72624,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72481,16 +72646,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72510,15 +72675,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -72544,9 +72709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -72574,7 +72739,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -72598,9 +72763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -72622,8 +72787,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: - - *342 - - *343 + - *344 + - *345 - 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 @@ -72759,7 +72924,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *68 + Link: *70 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -72783,8 +72948,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -73000,7 +73165,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *68 + Link: *70 '404': *6 '403': *29 x-github: @@ -73022,8 +73187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: sbom_uuid in: path required: true @@ -73034,7 +73199,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *504 + Location: *506 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -73055,8 +73220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response @@ -73094,8 +73259,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -73170,7 +73335,7 @@ paths: - version - url additionalProperties: false - metadata: &505 + metadata: &507 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73203,7 +73368,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *505 + metadata: *507 resolved: type: object description: A collection of resolved package dependencies. @@ -73216,7 +73381,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *505 + metadata: *507 relationship: type: string description: A notation of whether a dependency is requested @@ -73345,8 +73510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *342 - - *343 + - *344 + - *345 - name: sha description: The SHA recorded at creation time. in: query @@ -73386,11 +73551,11 @@ paths: application/json: schema: type: array - items: *506 + items: *508 examples: - default: *507 + default: *509 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73454,8 +73619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -73536,7 +73701,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: simple-example: summary: Simple example @@ -73609,9 +73774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *342 - - *343 - - &508 + - *344 + - *345 + - &510 name: deployment_id description: deployment_id parameter in: path @@ -73623,7 +73788,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: default: value: @@ -73688,9 +73853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 responses: '204': description: Response @@ -73712,9 +73877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 - *17 - *19 responses: @@ -73724,7 +73889,7 @@ paths: application/json: schema: type: array - items: &509 + items: &511 title: Deployment Status description: The status of a deployment. type: object @@ -73815,8 +73980,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -73865,7 +74030,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -73885,9 +74050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 requestBody: required: true content: @@ -73962,9 +74127,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: &510 + default: &512 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74020,9 +74185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 - name: status_id in: path required: true @@ -74033,9 +74198,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: *510 + default: *512 '404': *6 x-github: githubCloudOnly: false @@ -74060,8 +74225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -74118,8 +74283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -74136,7 +74301,7 @@ paths: type: integer environments: type: array - items: &512 + items: &514 title: Environment description: Details of a deployment environment type: object @@ -74188,7 +74353,7 @@ paths: type: type: string example: wait_timer - wait_timer: &514 + wait_timer: &516 type: integer example: 30 description: The amount of time to delay a job after @@ -74225,11 +74390,11 @@ paths: items: type: object properties: - type: *511 + type: *513 reviewer: anyOf: - *4 - - *195 + - *197 required: - id - node_id @@ -74249,7 +74414,7 @@ paths: - id - node_id - type - deployment_branch_policy: &515 + deployment_branch_policy: &517 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -74365,9 +74530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *342 - - *343 - - &513 + - *344 + - *345 + - &515 name: environment_name in: path required: true @@ -74380,9 +74545,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *514 examples: - default: &516 + default: &518 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74466,9 +74631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: false content: @@ -74477,7 +74642,7 @@ paths: type: object nullable: true properties: - wait_timer: *514 + wait_timer: *516 prevent_self_review: type: boolean example: false @@ -74494,13 +74659,13 @@ paths: items: type: object properties: - type: *511 + type: *513 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *515 + deployment_branch_policy: *517 additionalProperties: false examples: default: @@ -74520,9 +74685,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *514 examples: - default: *516 + default: *518 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74546,9 +74711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 responses: '204': description: Default response @@ -74573,9 +74738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 - *17 - *19 responses: @@ -74593,7 +74758,7 @@ paths: example: 2 branch_policies: type: array - items: &517 + items: &519 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74650,9 +74815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: true content: @@ -74698,9 +74863,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - example-wildcard: &518 + example-wildcard: &520 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -74742,10 +74907,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - &519 + - *344 + - *345 + - *515 + - &521 name: branch_policy_id in: path required: true @@ -74757,9 +74922,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - default: *518 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74778,10 +74943,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - *519 + - *344 + - *345 + - *515 + - *521 requestBody: required: true content: @@ -74809,9 +74974,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - default: *518 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74830,10 +74995,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - *519 + - *344 + - *345 + - *515 + - *521 responses: '204': description: Response @@ -74858,9 +75023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 responses: '200': description: List of deployment protection rules @@ -74876,7 +75041,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &520 + items: &522 title: Deployment protection rule description: Deployment protection rule type: object @@ -74895,7 +75060,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &521 + app: &523 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -74994,9 +75159,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: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 requestBody: content: application/json: @@ -75017,9 +75182,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *520 + schema: *522 examples: - default: &522 + default: &524 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75054,9 +75219,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: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 - *19 - *17 responses: @@ -75075,7 +75240,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *521 + items: *523 examples: default: value: @@ -75110,10 +75275,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *342 - - *343 - - *513 - - &523 + - *344 + - *345 + - *515 + - &525 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75125,9 +75290,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: - default: *522 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75148,10 +75313,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *513 - - *343 - - *342 - - *523 + - *515 + - *345 + - *344 + - *525 responses: '204': description: Response @@ -75177,9 +75342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 - *17 - *19 responses: @@ -75197,11 +75362,11 @@ paths: type: integer secrets: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75224,17 +75389,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *390 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75256,18 +75421,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *524 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75289,10 +75454,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 requestBody: required: true content: @@ -75323,7 +75488,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -75349,10 +75514,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 responses: '204': description: Default response @@ -75377,10 +75542,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *342 - - *343 - - *513 - - *358 + - *344 + - *345 + - *515 + - *360 - *19 responses: '200': @@ -75397,11 +75562,11 @@ paths: type: integer variables: type: array - items: *391 + items: *393 examples: - default: *392 + default: *394 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75422,9 +75587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: true content: @@ -75451,7 +75616,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -75476,18 +75641,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *342 - - *343 - - *513 - - *170 + - *344 + - *345 + - *515 + - *172 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *525 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75508,10 +75673,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *342 - - *343 - - *170 - - *513 + - *344 + - *345 + - *172 + - *515 requestBody: required: true content: @@ -75553,10 +75718,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *342 - - *343 - - *170 - - *513 + - *344 + - *345 + - *172 + - *515 responses: '204': description: Response @@ -75578,8 +75743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -75589,7 +75754,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -75647,8 +75812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *342 - - *343 + - *344 + - *345 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -75670,7 +75835,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -75783,7 +75948,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *68 + Link: *70 '400': *14 x-github: githubCloudOnly: false @@ -75807,8 +75972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -75840,9 +76005,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 '400': *14 '422': *15 '403': *29 @@ -75863,8 +76028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -75923,8 +76088,8 @@ paths: application/json: schema: oneOf: - - *128 - - *526 + - *130 + - *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75949,8 +76114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *342 - - *343 + - *344 + - *345 - name: file_sha in: path required: true @@ -76049,8 +76214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76159,7 +76324,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &529 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76373,15 +76538,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 responses: '200': description: Response content: application/json: - schema: *527 + schema: *529 examples: default: value: @@ -76437,9 +76602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *342 - - *343 - - &528 + - *344 + - *345 + - &530 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. @@ -76456,7 +76621,7 @@ paths: application/json: schema: type: array - items: &529 + items: &531 title: Git Reference description: Git references within a repository type: object @@ -76509,7 +76674,7 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -76531,17 +76696,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: &530 + default: &532 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76570,8 +76735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76600,9 +76765,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -76628,9 +76793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 requestBody: required: true content: @@ -76659,9 +76824,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 '422': *15 '409': *54 x-github: @@ -76679,9 +76844,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 responses: '204': description: Response @@ -76736,8 +76901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76804,7 +76969,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &534 title: Git Tag description: Metadata for a Git tag type: object @@ -76855,7 +77020,7 @@ paths: - sha - type - url - verification: *531 + verification: *533 required: - sha - url @@ -76865,7 +77030,7 @@ paths: - tag - message examples: - default: &533 + default: &535 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -76938,8 +77103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *342 - - *343 + - *344 + - *345 - name: tag_sha in: path required: true @@ -76950,9 +77115,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *534 examples: - default: *533 + default: *535 '404': *6 '409': *54 x-github: @@ -76976,8 +77141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -77050,7 +77215,7 @@ paths: description: Response content: application/json: - schema: &534 + schema: &536 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77146,8 +77311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *342 - - *343 + - *344 + - *345 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77170,7 +77335,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: default-response: summary: Default response @@ -77229,8 +77394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -77240,7 +77405,7 @@ paths: application/json: schema: type: array - items: &535 + items: &537 title: Webhook description: Webhooks for repositories. type: object @@ -77294,7 +77459,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &781 + last_response: &783 title: Hook Response type: object properties: @@ -77349,7 +77514,7 @@ paths: status: unused message: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -77368,8 +77533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -77421,9 +77586,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: &536 + default: &538 value: type: Repository id: 12345678 @@ -77471,17 +77636,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '200': description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: *536 + default: *538 '404': *6 x-github: githubCloudOnly: false @@ -77501,9 +77666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 requestBody: required: true content: @@ -77548,9 +77713,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: *536 + default: *538 '422': *15 '404': *6 x-github: @@ -77571,9 +77736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77597,9 +77762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '200': description: Response @@ -77626,9 +77791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 requestBody: required: false content: @@ -77672,12 +77837,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 - - *17 - - *216 + - *344 + - *345 - *217 + - *17 + - *218 + - *219 responses: '200': description: Response @@ -77685,9 +77850,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *219 + default: *221 '400': *14 '422': *15 x-github: @@ -77706,18 +77871,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: - default: *221 + default: *223 '400': *14 '422': *15 x-github: @@ -77736,9 +77901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 - *16 responses: '202': *39 @@ -77761,9 +77926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77788,9 +77953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77813,8 +77978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response if immutable releases are enabled @@ -77860,8 +78025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '409': *54 @@ -77881,8 +78046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '409': *54 @@ -77939,14 +78104,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &537 + schema: &539 title: Import description: A repository import from an external source. type: object @@ -78045,7 +78210,7 @@ paths: - html_url - authors_url examples: - default: &540 + default: &542 value: vcs: subversion use_lfs: true @@ -78061,7 +78226,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': &538 + '503': &540 description: Unavailable due to service under maintenance. content: application/json: @@ -78090,8 +78255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -78139,7 +78304,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: default: value: @@ -78164,7 +78329,7 @@ paths: type: string '422': *15 '404': *6 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78192,8 +78357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -78242,7 +78407,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: example-1: summary: Example 1 @@ -78290,7 +78455,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': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78313,12 +78478,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78344,9 +78509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *342 - - *343 - - &710 + - *344 + - *345 + - &712 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78360,7 +78525,7 @@ paths: application/json: schema: type: array - items: &539 + items: &541 title: Porter Author description: Porter Author type: object @@ -78414,7 +78579,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': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78439,8 +78604,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *342 - - *343 + - *344 + - *345 - name: author_id in: path required: true @@ -78470,7 +78635,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: default: value: @@ -78483,7 +78648,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78507,8 +78672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78549,7 +78714,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78577,8 +78742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -78605,11 +78770,11 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: - default: *540 + default: *542 '422': *15 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78632,8 +78797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78641,8 +78806,8 @@ paths: application/json: schema: *22 examples: - default: *541 - '301': *346 + default: *543 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -78662,8 +78827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78671,12 +78836,12 @@ paths: application/json: schema: anyOf: - - *234 + - *236 - type: object properties: {} additionalProperties: false examples: - default: &543 + default: &545 value: limit: collaborators_only origin: repository @@ -78701,13 +78866,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *542 + schema: *544 examples: default: summary: Example request body @@ -78719,9 +78884,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *543 + default: *545 '409': description: Response x-github: @@ -78743,8 +78908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -78767,8 +78932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -78778,9 +78943,9 @@ paths: application/json: schema: type: array - items: *544 + items: *546 examples: - default: &703 + default: &705 value: - id: 1 repository: @@ -78894,7 +79059,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78911,9 +79076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *342 - - *343 - - *238 + - *344 + - *345 + - *240 requestBody: required: false content: @@ -78942,7 +79107,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: default: value: @@ -79073,9 +79238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *342 - - *343 - - *238 + - *344 + - *345 + - *240 responses: '204': description: Response @@ -79106,8 +79271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *342 - - *343 + - *344 + - *345 - 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 @@ -79155,7 +79320,7 @@ paths: required: false schema: type: string - - *245 + - *247 - name: sort description: What to sort results by. in: query @@ -79168,7 +79333,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -79178,9 +79343,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &556 + default: &558 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79328,8 +79493,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '422': *15 '404': *6 x-github: @@ -79358,8 +79523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -79441,9 +79606,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: &553 + default: &555 value: id: 1 node_id: MDU6SXNzdWUx @@ -79598,9 +79763,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *120 + '503': *122 '404': *6 - '410': *545 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -79628,9 +79793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *342 - - *343 - - *110 + - *344 + - *345 + - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -79640,7 +79805,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -79650,9 +79815,9 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: &555 + default: &557 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79683,7 +79848,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '404': *6 x-github: @@ -79710,17 +79875,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &547 + default: &549 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79775,9 +79940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -79799,9 +79964,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 '422': *15 x-github: githubCloudOnly: false @@ -79819,9 +79984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -79849,15 +80014,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: default: value: @@ -79913,7 +80078,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -79930,17 +80095,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *545 - '503': *120 + '410': *547 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79957,9 +80122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -79985,11 +80150,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -80008,9 +80173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -80042,16 +80207,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -80073,10 +80238,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *342 - - *343 - - *102 - - *549 + - *344 + - *345 + - *104 + - *551 responses: '204': description: Response @@ -80096,8 +80261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -80107,7 +80272,7 @@ paths: application/json: schema: type: array - items: &552 + items: &554 title: Issue Event description: Issue Event type: object @@ -80150,8 +80315,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *550 - required: *551 + properties: *552 + required: *553 nullable: true label: title: Issue Event Label @@ -80195,7 +80360,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *195 + requested_team: *197 dismissed_review: title: Issue Event Dismissed Review type: object @@ -80260,7 +80425,7 @@ paths: required: - from - to - author_association: *83 + author_association: *85 lock_reason: type: string nullable: true @@ -80273,8 +80438,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -80441,7 +80606,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -80459,8 +80624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *342 - - *343 + - *344 + - *345 - name: event_id in: path required: true @@ -80471,7 +80636,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *554 examples: default: value: @@ -80664,7 +80829,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *545 + '410': *547 '403': *29 x-github: githubCloudOnly: false @@ -80698,9 +80863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *342 - - *343 - - &554 + - *344 + - *345 + - &556 name: issue_number description: The number that identifies the issue. in: path @@ -80712,11 +80877,11 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: default: summary: Issue - value: *553 + value: *555 pinned_comment: summary: Issue with pinned comment value: @@ -80915,9 +81080,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 '304': *37 x-github: githubCloudOnly: false @@ -80942,9 +81107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -81068,15 +81233,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 '422': *15 - '503': *120 + '503': *122 '403': *29 - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81094,9 +81259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -81122,9 +81287,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81140,9 +81305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: content: application/json: @@ -81167,9 +81332,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81191,9 +81356,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: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: assignee in: path required: true @@ -81233,10 +81398,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *342 - - *343 - - *554 - - *93 + - *344 + - *345 + - *556 + - *95 - *17 - *19 responses: @@ -81246,13 +81411,13 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: *555 + default: *557 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81281,9 +81446,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -81305,16 +81470,16 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -81342,9 +81507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81354,14 +81519,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81389,9 +81554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -81413,17 +81578,17 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *346 + '301': *348 '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -81454,9 +81619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -81468,15 +81633,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 - '301': *346 + default: *555 + '301': *348 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *545 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -81502,9 +81667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81514,14 +81679,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81538,9 +81703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81554,7 +81719,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &560 + - &562 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81585,8 +81750,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -81608,7 +81773,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &563 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81639,8 +81804,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -81728,8 +81893,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 assigner: *4 required: @@ -81744,7 +81909,7 @@ paths: - performed_via_github_app - assignee - assigner - - &562 + - &564 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81775,8 +81940,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -81795,7 +81960,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &565 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81826,8 +81991,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -81846,7 +82011,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &566 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81877,8 +82042,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 rename: type: object properties: @@ -81900,7 +82065,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &567 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81931,10 +82096,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -81947,7 +82112,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &568 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81978,10 +82143,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -81994,7 +82159,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &569 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -82025,8 +82190,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 dismissed_review: type: object properties: @@ -82054,7 +82219,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &570 title: Locked Issue Event description: Locked Issue Event type: object @@ -82085,8 +82250,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 lock_reason: type: string example: '"off-topic"' @@ -82102,7 +82267,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &571 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -82133,8 +82298,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -82168,7 +82333,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &572 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82199,8 +82364,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -82234,7 +82399,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &573 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82265,8 +82430,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -82300,7 +82465,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &574 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82390,8 +82555,8 @@ paths: name: label color: red headers: - Link: *68 - '410': *545 + Link: *70 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82408,9 +82573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -82420,9 +82585,9 @@ paths: application/json: schema: type: array - items: *557 + items: *559 examples: - default: &558 + default: &560 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -82445,10 +82610,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82477,9 +82642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82543,14 +82708,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *557 + items: *559 examples: - default: *558 + default: *560 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82581,9 +82746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82648,14 +82813,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *557 + items: *559 examples: - default: *558 + default: *560 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82681,17 +82846,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *342 - - *343 - - *554 - - *241 + - *344 + - *345 + - *556 + - *243 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82709,9 +82874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -82721,9 +82886,9 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: &559 + default: &561 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82740,10 +82905,10 @@ paths: color: a2eeef default: false headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82759,9 +82924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -82804,12 +82969,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 - '301': *346 + default: *561 + '301': *348 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -82826,9 +82991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -82888,12 +83053,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 - '301': *346 + default: *561 + '301': *348 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -82910,15 +83075,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '204': description: Response - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82937,9 +83102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: name in: path required: true @@ -82952,7 +83117,7 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: default: value: @@ -82963,9 +83128,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82985,9 +83150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -83015,7 +83180,7 @@ paths: '204': description: Response '403': *29 - '410': *545 + '410': *547 '404': *6 '422': *15 x-github: @@ -83033,9 +83198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '204': description: Response @@ -83065,20 +83230,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 - '301': *346 + default: *555 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83095,9 +83260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - 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. @@ -83123,13 +83288,13 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83147,9 +83312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -83181,16 +83346,16 @@ paths: description: Response content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Response content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -83212,10 +83377,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *342 - - *343 - - *554 - - *549 + - *344 + - *345 + - *556 + - *551 responses: '204': description: Response @@ -83244,9 +83409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -83268,9 +83433,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -83303,9 +83468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -83315,13 +83480,13 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83349,9 +83514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -83378,16 +83543,16 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -83407,9 +83572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -83440,13 +83605,13 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 '403': *29 '404': *6 '422': *7 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -83464,9 +83629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -83481,8 +83646,6 @@ paths: description: Timeline Event type: object anyOf: - - *560 - - *561 - *562 - *563 - *564 @@ -83494,6 +83657,8 @@ paths: - *570 - *571 - *572 + - *573 + - *574 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83536,7 +83701,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -83546,16 +83711,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true required: - event @@ -83587,7 +83752,7 @@ paths: properties: type: type: string - issue: *86 + issue: *88 required: - event - created_at @@ -83787,7 +83952,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - event - id @@ -83810,7 +83975,7 @@ paths: type: string comments: type: array - items: &594 + items: &596 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83905,7 +84070,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: @@ -83989,7 +84154,7 @@ paths: enum: - line - file - reactions: *84 + reactions: *86 body_html: type: string example: '"

comment body

"' @@ -84025,7 +84190,7 @@ paths: type: string comments: type: array - items: *473 + items: *475 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -84056,8 +84221,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -84100,8 +84265,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -84144,8 +84309,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 state_reason: type: string nullable: true @@ -84312,9 +84477,9 @@ paths: type: User site_admin: true headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84331,8 +84496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -84342,7 +84507,7 @@ paths: application/json: schema: type: array - items: &575 + items: &577 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -84392,7 +84557,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84408,8 +84573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84445,9 +84610,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *577 examples: - default: &576 + default: &578 value: id: 1 key: ssh-rsa AAA... @@ -84481,9 +84646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *342 - - *343 - - &577 + - *344 + - *345 + - &579 name: key_id description: The unique identifier of the key. in: path @@ -84495,9 +84660,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *577 examples: - default: *576 + default: *578 '404': *6 x-github: githubCloudOnly: false @@ -84515,9 +84680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *342 - - *343 - - *577 + - *344 + - *345 + - *579 responses: '204': description: Response @@ -84537,8 +84702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -84548,11 +84713,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 + default: *561 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -84571,8 +84736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84608,9 +84773,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: &578 + default: &580 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84642,8 +84807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84654,9 +84819,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: *578 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -84673,8 +84838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84713,7 +84878,7 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -84739,8 +84904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84766,8 +84931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -84806,9 +84971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *342 - - *343 - - *446 + - *344 + - *345 + - *448 responses: '200': description: Response @@ -84870,8 +85035,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true required: - _links @@ -84953,8 +85118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85019,8 +85184,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85054,9 +85219,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *476 + schema: *478 examples: - default: *579 + default: *581 '204': description: Response when already merged '404': @@ -85081,8 +85246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *342 - - *343 + - *344 + - *345 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -85123,12 +85288,12 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 examples: default: value: @@ -85167,7 +85332,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -85184,8 +85349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85225,9 +85390,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: &581 + default: &583 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -85286,9 +85451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *342 - - *343 - - &582 + - *344 + - *345 + - &584 name: milestone_number description: The number that identifies the milestone. in: path @@ -85300,9 +85465,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *581 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -85319,9 +85484,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 requestBody: required: false content: @@ -85359,9 +85524,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *581 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85377,9 +85542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 responses: '204': description: Response @@ -85400,9 +85565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 - *17 - *19 responses: @@ -85412,11 +85577,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 + default: *561 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85433,12 +85598,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *342 - - *343 - - *583 - - *584 - - *93 + - *344 + - *345 - *585 + - *586 + - *95 + - *587 - *17 - *19 responses: @@ -85448,11 +85613,11 @@ paths: application/json: schema: type: array - items: *113 + items: *115 examples: - default: *586 + default: *588 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85474,8 +85639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -85533,14 +85698,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &587 + schema: &589 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85665,7 +85830,7 @@ paths: - custom_404 - public examples: - default: &588 + default: &590 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85706,8 +85871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85761,9 +85926,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *589 examples: - default: *588 + default: *590 '422': *15 '409': *54 x-github: @@ -85786,8 +85951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85886,8 +86051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -85913,8 +86078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -85924,7 +86089,7 @@ paths: application/json: schema: type: array - items: &589 + items: &591 title: Page Build description: Page Build type: object @@ -85999,7 +86164,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86018,8 +86183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response @@ -86064,16 +86229,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *589 + schema: *591 examples: - default: &590 + default: &592 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -86121,8 +86286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *342 - - *343 + - *344 + - *345 - name: build_id in: path required: true @@ -86133,9 +86298,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *591 examples: - default: *590 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86155,8 +86320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -86261,9 +86426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *342 - - *343 - - &591 + - *344 + - *345 + - &593 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -86321,9 +86486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *342 - - *343 - - *591 + - *344 + - *345 + - *593 responses: '204': *61 '404': *6 @@ -86350,8 +86515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -86582,7 +86747,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -86609,8 +86774,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Private vulnerability reporting status @@ -86647,8 +86812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '422': *14 @@ -86669,8 +86834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '422': *14 @@ -86692,8 +86857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -86701,7 +86866,7 @@ paths: application/json: schema: type: array - items: *294 + items: *296 examples: default: value: @@ -86732,8 +86897,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -86745,7 +86910,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *294 + items: *296 required: - properties examples: @@ -86795,8 +86960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *342 - - *343 + - *344 + - *345 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86856,11 +87021,11 @@ paths: application/json: schema: type: array - items: *480 + items: *482 examples: - default: *592 + default: *594 headers: - Link: *68 + Link: *70 '304': *37 '422': *15 x-github: @@ -86890,8 +87055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -86956,7 +87121,7 @@ paths: description: Response content: application/json: - schema: &596 + schema: &598 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -87067,8 +87232,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true active_lock_reason: type: string @@ -87111,7 +87276,7 @@ paths: items: *4 requested_teams: type: array - items: *331 + items: *333 head: type: object properties: @@ -87119,7 +87284,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -87136,7 +87301,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -87149,14 +87314,14 @@ paths: _links: type: object properties: - comments: *281 - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + comments: *283 + commits: *283 + statuses: *283 + html: *283 + issue: *283 + review_comments: *283 + review_comment: *283 + self: *283 required: - comments - commits @@ -87166,8 +87331,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: *593 + author_association: *85 + auto_merge: *595 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -87259,7 +87424,7 @@ paths: - merged_by - review_comments examples: - default: &597 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87786,8 +87951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: sort in: query required: false @@ -87806,7 +87971,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -87816,9 +87981,9 @@ paths: application/json: schema: type: array - items: *594 + items: *596 examples: - default: &599 + default: &601 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87870,7 +88035,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87895,17 +88060,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *594 + schema: *596 examples: - default: &595 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87980,9 +88145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -88004,9 +88169,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: - default: *595 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88022,9 +88187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -88045,9 +88210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -88073,11 +88238,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -88096,9 +88261,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -88130,16 +88295,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -88161,10 +88326,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *342 - - *343 - - *102 - - *549 + - *344 + - *345 + - *104 + - *551 responses: '204': description: Response @@ -88207,9 +88372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *342 - - *343 - - &598 + - *344 + - *345 + - &600 name: pull_number description: The number that identifies the pull request. in: path @@ -88222,9 +88387,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *596 + schema: *598 examples: - default: *597 + default: *599 '304': *37 '404': *6 '406': @@ -88233,7 +88398,7 @@ paths: application/json: schema: *3 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88259,9 +88424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -88303,9 +88468,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *598 examples: - default: *597 + default: *599 '422': *15 '403': *29 x-github: @@ -88327,9 +88492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#archive-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response @@ -88354,9 +88519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#unarchive-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response @@ -88382,9 +88547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -88444,21 +88609,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88484,10 +88649,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *342 - - *343 - - *598 - - *110 + - *344 + - *345 + - *600 + - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -88497,7 +88662,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -88507,11 +88672,11 @@ paths: application/json: schema: type: array - items: *594 + items: *596 examples: - default: *599 + default: *601 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88542,9 +88707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -88649,7 +88814,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: example-for-a-multi-line-comment: value: @@ -88737,10 +88902,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *342 - - *343 - - *598 - - *102 + - *344 + - *345 + - *600 + - *104 requestBody: required: true content: @@ -88762,7 +88927,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: default: value: @@ -88848,9 +89013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -88860,11 +89025,11 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *600 + default: *602 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88892,9 +89057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -88904,7 +89069,7 @@ paths: application/json: schema: type: array - items: *489 + items: *491 examples: default: value: @@ -88920,10 +89085,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *68 + Link: *70 '422': *15 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88942,9 +89107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response if pull request has been merged @@ -88967,9 +89132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -89080,9 +89245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '200': description: Response @@ -89098,7 +89263,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 required: - users - teams @@ -89139,7 +89304,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89157,9 +89322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -89196,7 +89361,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -89732,9 +89897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -89768,7 +89933,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -90273,9 +90438,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -90285,7 +90450,7 @@ paths: application/json: schema: type: array - items: &601 + items: &603 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90354,7 +90519,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - id - node_id @@ -90403,7 +90568,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90436,9 +90601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -90524,9 +90689,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: &603 + default: &605 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90589,10 +90754,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - &602 + - *344 + - *345 + - *600 + - &604 name: review_id description: The unique identifier of the review. in: path @@ -90604,9 +90769,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: &604 + default: &606 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90665,10 +90830,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -90691,7 +90856,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: default: value: @@ -90753,18 +90918,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 responses: '200': description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: *603 + default: *605 '422': *7 '404': *6 x-github: @@ -90791,10 +90956,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 - *17 - *19 responses: @@ -90873,13 +91038,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: - self: *281 - html: *281 - pull_request: *281 + self: *283 + html: *283 + pull_request: *283 required: - self - html @@ -90888,7 +91053,7 @@ paths: type: string body_html: type: string - reactions: *84 + reactions: *86 side: description: The side of the first line of the range for a multi-line comment. @@ -91000,7 +91165,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -91029,10 +91194,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -91060,7 +91225,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: default: value: @@ -91123,10 +91288,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -91161,9 +91326,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: *604 + default: *606 '404': *6 '422': *7 '403': *29 @@ -91185,9 +91350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -91250,8 +91415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *342 - - *343 + - *344 + - *345 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91264,9 +91429,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: &606 + default: &608 value: type: file encoding: base64 @@ -91308,8 +91473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *342 - - *343 + - *344 + - *345 - name: dir description: The alternate path to look for a README file in: path @@ -91329,9 +91494,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: *606 + default: *608 '404': *6 '422': *15 x-github: @@ -91353,8 +91518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -91364,7 +91529,7 @@ paths: application/json: schema: type: array - items: *607 + items: *609 examples: default: value: @@ -91438,7 +91603,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -91458,8 +91623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -91535,9 +91700,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: &611 + default: &613 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91642,9 +91807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *342 - - *343 - - &609 + - *344 + - *345 + - &611 name: asset_id description: The unique identifier of the asset. in: path @@ -91656,9 +91821,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: &610 + default: &612 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 @@ -91693,7 +91858,7 @@ paths: type: User site_admin: false '404': *6 - '302': *493 + '302': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91709,9 +91874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *342 - - *343 - - *609 + - *344 + - *345 + - *611 requestBody: required: false content: @@ -91739,9 +91904,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *610 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91757,9 +91922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *342 - - *343 - - *609 + - *344 + - *345 + - *611 responses: '204': description: Response @@ -91784,8 +91949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -91870,16 +92035,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -91897,8 +92062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *342 - - *343 + - *344 + - *345 - name: tag description: tag parameter in: path @@ -91911,9 +92076,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -91935,9 +92100,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *342 - - *343 - - &612 + - *344 + - *345 + - &614 name: release_id description: The unique identifier of the release. in: path @@ -91951,9 +92116,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: *607 + schema: *609 examples: - default: *611 + default: *613 '401': description: Unauthorized x-github: @@ -91971,9 +92136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 requestBody: required: false content: @@ -92037,9 +92202,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': description: Not Found if the discussion category name is invalid content: @@ -92060,9 +92225,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 responses: '204': description: Response @@ -92083,9 +92248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - *17 - *19 responses: @@ -92095,7 +92260,7 @@ paths: application/json: schema: type: array - items: *608 + items: *610 examples: default: value: @@ -92132,7 +92297,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92176,9 +92341,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: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - name: name in: query required: true @@ -92204,7 +92369,7 @@ paths: description: Response for successful upload content: application/json: - schema: *608 + schema: *610 examples: response-for-successful-upload: value: @@ -92259,9 +92424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - 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. @@ -92285,11 +92450,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -92308,9 +92473,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 requestBody: required: true content: @@ -92340,16 +92505,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -92371,10 +92536,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *342 - - *343 - - *612 - - *549 + - *344 + - *345 + - *614 + - *551 responses: '204': description: Response @@ -92398,9 +92563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 - *17 - *19 responses: @@ -92416,8 +92581,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &613 + - *305 + - &615 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92436,69 +92601,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *304 - - *613 - - allOf: - - *305 - - *613 - allOf: - *306 - - *613 - - allOf: - - *614 - - *613 + - *615 - allOf: - *307 - - *613 + - *615 - allOf: - *308 - - *613 + - *615 + - allOf: + - *616 + - *615 - allOf: - *309 - - *613 + - *615 - allOf: - *310 - - *613 + - *615 - allOf: - *311 - - *613 + - *615 - allOf: - *312 - - *613 + - *615 - allOf: - *313 - - *613 + - *615 - allOf: - *314 - - *613 + - *615 - allOf: - *315 - - *613 + - *615 - allOf: - *316 - - *613 + - *615 - allOf: - *317 - - *613 + - *615 - allOf: - *318 - - *613 + - *615 - allOf: - *319 - - *613 + - *615 - allOf: - *320 - - *613 + - *615 - allOf: - *321 - - *613 + - *615 - allOf: - *322 - - *613 + - *615 - allOf: - *323 - - *613 + - *615 + - allOf: + - *324 + - *615 + - allOf: + - *325 + - *615 examples: default: value: @@ -92537,8 +92702,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - name: includes_parents @@ -92549,7 +92714,7 @@ paths: schema: type: boolean default: true - - *615 + - *617 responses: '200': description: Response @@ -92557,7 +92722,7 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: default: value: @@ -92604,8 +92769,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 requestBody: description: Request body required: true @@ -92625,16 +92790,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *303 + conditions: *300 rules: type: array description: An array of rules within the ruleset. - items: *616 + items: *618 required: - name - enforcement @@ -92665,9 +92830,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: &626 + default: &628 value: id: 42 name: super cool ruleset @@ -92715,12 +92880,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *342 - - *343 - - *617 - - *618 + - *344 + - *345 - *619 - *620 + - *621 + - *622 - *17 - *19 responses: @@ -92728,9 +92893,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *623 examples: - default: *622 + default: *624 '404': *6 '500': *55 x-github: @@ -92751,17 +92916,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *342 - - *343 - - *623 + - *344 + - *345 + - *625 responses: '200': description: Response content: application/json: - schema: *624 + schema: *626 examples: - default: *625 + default: *627 '404': *6 '500': *55 x-github: @@ -92789,8 +92954,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92810,9 +92975,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *626 + default: *628 '404': *6 '500': *55 put: @@ -92830,8 +92995,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92856,16 +93021,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *303 + conditions: *300 rules: description: An array of rules within the ruleset. type: array - items: *616 + items: *618 examples: default: value: @@ -92893,9 +93058,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *626 + default: *628 '404': *6 '422': *15 '500': *55 @@ -92914,8 +93079,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92938,8 +93103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - name: ruleset_id @@ -92955,9 +93120,9 @@ paths: application/json: schema: type: array - items: *327 + items: *329 examples: - default: *627 + default: *629 '404': *6 '500': *55 x-github: @@ -92976,8 +93141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92995,7 +93160,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: default: value: @@ -93050,25 +93215,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *342 - - *343 - - *629 - - *630 + - *344 + - *345 - *631 - *632 - *633 - *634 - *635 - *636 + - *637 + - *638 - *62 - *19 - *17 - - *637 - - *638 - *639 - *640 - *641 - *642 + - *643 + - *644 responses: '200': description: Response @@ -93076,11 +93241,11 @@ paths: application/json: schema: type: array - items: &646 + items: &648 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -93088,15 +93253,15 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *643 - resolution: *644 + state: *645 + resolution: *646 resolved_at: type: string format: date-time @@ -93202,7 +93367,7 @@ paths: pull request. ' - oneOf: *645 + oneOf: *647 nullable: true has_more_locations: type: boolean @@ -93344,7 +93509,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93366,16 +93531,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 - - *642 + - *344 + - *345 + - *442 + - *644 responses: '200': description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -93406,7 +93571,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93429,9 +93594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: true content: @@ -93439,8 +93604,8 @@ paths: schema: type: object properties: - state: *643 - resolution: *644 + state: *645 + resolution: *646 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -93476,7 +93641,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -93549,7 +93714,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93571,9 +93736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 - *19 - *17 responses: @@ -93584,7 +93749,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &803 + items: &805 type: object properties: type: @@ -93610,8 +93775,6 @@ paths: example: commit details: oneOf: - - *647 - - *648 - *649 - *650 - *651 @@ -93623,6 +93786,8 @@ paths: - *657 - *658 - *659 + - *660 + - *661 examples: default: value: @@ -93682,11 +93847,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *68 + Link: *70 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93708,8 +93873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -93717,14 +93882,14 @@ paths: schema: type: object properties: - reason: &661 + reason: &663 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *660 + placeholder_id: *662 required: - reason - placeholder_id @@ -93741,7 +93906,7 @@ paths: schema: type: object properties: - reason: *661 + reason: *663 expire_at: type: string format: date-time @@ -93764,7 +93929,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93787,13 +93952,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: - - *342 - - *343 + - *344 + - *345 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *120 + '503': *122 '200': description: Response content: @@ -93803,7 +93968,7 @@ paths: properties: incremental_scans: type: array - items: &662 + items: &664 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93829,15 +93994,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *662 + items: *664 backfill_scans: type: array - items: *662 + items: *664 custom_pattern_backfill_scans: type: array items: allOf: - - *662 + - *664 - type: object properties: pattern_name: @@ -93850,7 +94015,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *662 + items: *664 examples: default: value: @@ -93915,8 +94080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *342 - - *343 + - *344 + - *345 - *62 - name: sort description: The property to sort the results by. @@ -93960,9 +94125,9 @@ paths: application/json: schema: type: array - items: *663 + items: *665 examples: - default: *664 + default: *666 '400': *14 '404': *6 x-github: @@ -93985,8 +94150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -94059,7 +94224,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 required: - login - type @@ -94146,9 +94311,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: &666 + default: &668 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94381,8 +94546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -94486,7 +94651,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: default: value: @@ -94633,17 +94798,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '200': description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *666 + default: *668 '403': *29 '404': *6 x-github: @@ -94667,9 +94832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 requestBody: required: true content: @@ -94742,7 +94907,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 required: - login - type @@ -94828,17 +94993,17 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *666 - add_credit: *666 + default: *668 + add_credit: *668 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *128 + schema: *130 examples: invalid_state_transition: value: @@ -94869,9 +95034,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: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '202': *39 '400': *14 @@ -94898,17 +95063,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '202': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 '400': *14 '422': *15 '403': *29 @@ -94934,8 +95099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95012,7 +95177,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -95034,8 +95199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95044,7 +95209,7 @@ paths: application/json: schema: type: array - items: &667 + items: &669 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95077,8 +95242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -95154,8 +95319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -95251,8 +95416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95406,8 +95571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95417,7 +95582,7 @@ paths: application/json: schema: type: array - items: *667 + items: *669 examples: default: value: @@ -95450,8 +95615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *342 - - *343 + - *344 + - *345 - name: sha in: path required: true @@ -95505,7 +95670,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *670 examples: default: value: @@ -95559,8 +95724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95572,9 +95737,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95592,14 +95757,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &669 + schema: &671 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95667,8 +95832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -95694,7 +95859,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *671 examples: default: value: @@ -95721,8 +95886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -95742,8 +95907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95799,7 +95964,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95822,8 +95987,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *342 - - *343 + - *344 + - *345 - name: ref in: path required: true @@ -95859,8 +96024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95870,11 +96035,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -95892,8 +96057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 responses: @@ -95901,7 +96066,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &672 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -95913,7 +96078,7 @@ paths: required: - names examples: - default: &671 + default: &673 value: names: - octocat @@ -95936,8 +96101,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -95968,9 +96133,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: *671 + default: *673 '404': *6 '422': *7 x-github: @@ -95991,9 +96156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *342 - - *343 - - &672 + - *344 + - *345 + - &674 name: per description: The time frame to display results for. in: query @@ -96022,7 +96187,7 @@ paths: example: 128 clones: type: array - items: &673 + items: &675 title: Traffic type: object properties: @@ -96109,8 +96274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -96200,8 +96365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -96261,9 +96426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *342 - - *343 - - *672 + - *344 + - *345 + - *674 responses: '200': description: Response @@ -96282,7 +96447,7 @@ paths: example: 3782 views: type: array - items: *673 + items: *675 required: - uniques - count @@ -96359,8 +96524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -96396,7 +96561,7 @@ paths: description: Response content: application/json: - schema: *159 + schema: *161 examples: default: value: @@ -96634,8 +96799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96658,8 +96823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -96681,8 +96846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -96708,8 +96873,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *342 - - *343 + - *344 + - *345 - name: ref in: path required: true @@ -96801,9 +96966,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96844,7 +97009,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -97036,7 +97201,7 @@ paths: html_url: type: string format: uri - repository: *159 + repository: *161 score: type: number file_size: @@ -97054,7 +97219,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &674 + text_matches: &676 title: Search Result Text Matches type: array items: @@ -97168,7 +97333,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *120 + '503': *122 '422': *15 '403': *29 x-github: @@ -97216,7 +97381,7 @@ paths: enum: - author-date - committer-date - - &675 + - &677 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 @@ -97287,7 +97452,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true comment_count: type: integer @@ -97307,7 +97472,7 @@ paths: url: type: string format: uri - verification: *531 + verification: *533 required: - author - committer @@ -97326,7 +97491,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true parents: type: array @@ -97339,12 +97504,12 @@ paths: type: string sha: type: string - repository: *159 + repository: *161 score: type: number node_id: type: string - text_matches: *674 + text_matches: *676 required: - sha - node_id @@ -97536,7 +97701,7 @@ paths: - interactions - created - updated - - *675 + - *677 - *17 - *19 - name: advanced_search @@ -97650,11 +97815,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: type: string state_reason: @@ -97671,8 +97836,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true comments: type: integer @@ -97686,7 +97851,7 @@ paths: type: string format: date-time nullable: true - text_matches: *674 + text_matches: *676 pull_request: type: object properties: @@ -97719,10 +97884,10 @@ paths: type: string score: type: number - author_association: *83 + author_association: *85 draft: type: boolean - repository: *80 + repository: *82 body_html: type: string body_text: @@ -97730,7 +97895,7 @@ paths: timeline_url: type: string format: uri - type: *242 + type: *244 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -97740,17 +97905,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - reactions: *84 + reactions: *86 required: - assignee - closed_at @@ -97904,7 +98069,7 @@ paths: - quoted_text items: - "..." - '503': *120 + '503': *122 '422': *15 '304': *37 '403': *29 @@ -97958,7 +98123,7 @@ paths: enum: - created - updated - - *675 + - *677 - *17 - *19 responses: @@ -98002,7 +98167,7 @@ paths: nullable: true score: type: number - text_matches: *674 + text_matches: *676 required: - id - node_id @@ -98087,7 +98252,7 @@ paths: - forks - help-wanted-issues - updated - - *675 + - *677 - *17 - *19 responses: @@ -98315,8 +98480,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true permissions: type: object @@ -98335,7 +98500,7 @@ paths: - admin - pull - push - text_matches: *674 + text_matches: *676 temp_clone_token: type: string allow_merge_commit: @@ -98537,7 +98702,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *120 + '503': *122 '422': *15 '304': *37 x-github: @@ -98635,7 +98800,7 @@ paths: type: string format: uri nullable: true - text_matches: *674 + text_matches: *676 related: type: array nullable: true @@ -98826,7 +98991,7 @@ paths: - followers - repositories - joined - - *675 + - *677 - *17 - *19 responses: @@ -98930,7 +99095,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *674 + text_matches: *676 blog: type: string nullable: true @@ -98989,7 +99154,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *120 + '503': *122 '422': *15 x-github: githubCloudOnly: false @@ -99009,7 +99174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &678 + - &680 name: team_id description: The unique identifier of the team. in: path @@ -99021,9 +99186,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -99050,7 +99215,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *678 + - *680 requestBody: required: true content: @@ -99113,16 +99278,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '201': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 '422': *15 '403': *29 @@ -99150,7 +99315,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *678 + - *680 responses: '204': description: Response @@ -99179,7 +99344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -99189,11 +99354,11 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99217,7 +99382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *678 + - *680 - name: role description: Filters members returned by their role in the team. in: query @@ -99240,9 +99405,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -99268,8 +99433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: if user is a member @@ -99305,8 +99470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -99345,8 +99510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -99382,16 +99547,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-user-is-a-team-maintainer: *679 + response-if-user-is-a-team-maintainer: *681 '404': *6 x-github: githubCloudOnly: false @@ -99424,8 +99589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 requestBody: required: false content: @@ -99450,9 +99615,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *680 + response-if-users-membership-with-team-is-now-pending: *682 '403': description: Forbidden if team synchronization is set up '422': @@ -99486,8 +99651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -99514,7 +99679,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -99524,11 +99689,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -99556,15 +99721,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *681 + schema: *683 examples: alternative-response-with-extra-repository-information: value: @@ -99715,9 +99880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 requestBody: required: false content: @@ -99767,9 +99932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 responses: '204': description: Response @@ -99794,7 +99959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -99804,11 +99969,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: *682 + response-if-child-teams-exist: *684 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '422': *15 @@ -99839,7 +100004,7 @@ paths: application/json: schema: oneOf: - - &684 + - &686 title: Private User description: Private User type: object @@ -100042,7 +100207,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *683 + - *685 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -100195,7 +100360,7 @@ paths: description: Response content: application/json: - schema: *684 + schema: *686 examples: default: value: @@ -100274,7 +100439,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '304': *37 '404': *6 '403': *29 @@ -100297,7 +100462,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: - - *72 + - *74 responses: '204': description: If the user is blocked @@ -100325,7 +100490,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -100349,7 +100514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -100398,9 +100563,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: - default: *248 + default: *250 '304': *37 '500': *55 '401': *25 @@ -100539,21 +100704,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100593,7 +100758,7 @@ paths: type: integer secrets: type: array - items: &685 + items: &687 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -100633,9 +100798,9 @@ paths: - visibility - selected_repositories_url examples: - default: *466 + default: *468 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100703,13 +100868,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '200': description: Response content: application/json: - schema: *685 + schema: *687 examples: default: value: @@ -100739,7 +100904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 requestBody: required: true content: @@ -100784,7 +100949,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -100812,7 +100977,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '204': description: Response @@ -100837,7 +101002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 responses: '200': description: Response @@ -100853,9 +101018,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *196 + default: *198 '401': *25 '403': *29 '404': *6 @@ -100880,7 +101045,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 requestBody: required: true content: @@ -100934,7 +101099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -100967,7 +101132,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -100999,15 +101164,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '304': *37 '500': *55 '401': *25 @@ -101033,7 +101198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 requestBody: required: false content: @@ -101063,9 +101228,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 @@ -101087,7 +101252,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '202': *39 '304': *37 @@ -101116,13 +101281,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '202': description: Response content: application/json: - schema: &686 + schema: &688 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -101163,7 +101328,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &687 + default: &689 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -101195,7 +101360,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *249 + - *251 - name: export_id in: path required: true @@ -101208,9 +101373,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: - default: *687 + default: *689 '404': *6 x-github: githubCloudOnly: false @@ -101231,7 +101396,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *249 + - *251 responses: '200': description: Response @@ -101247,9 +101412,9 @@ paths: type: integer machines: type: array - items: *688 + items: *690 examples: - default: *689 + default: *691 '304': *37 '500': *55 '401': *25 @@ -101278,7 +101443,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *249 + - *251 requestBody: required: true content: @@ -101328,13 +101493,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *345 + repository: *347 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *464 - required: *465 + properties: *466 + required: *467 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -102108,15 +102273,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '304': *37 '500': *55 '400': *14 @@ -102148,15 +102313,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '500': *55 '401': *25 '403': *29 @@ -102186,9 +102351,9 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: &700 + default: &702 value: - id: 197 name: hello_docker @@ -102289,7 +102454,7 @@ paths: application/json: schema: type: array - items: &690 + items: &692 title: Email description: Email type: object @@ -102354,16 +102519,16 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: - default: &702 + default: &704 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -102431,7 +102596,7 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: default: value: @@ -102541,9 +102706,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -102574,9 +102739,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -102596,7 +102761,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: - - *72 + - *74 responses: '204': description: if the person is followed by the authenticated user @@ -102626,7 +102791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -102651,7 +102816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -102687,7 +102852,7 @@ paths: application/json: schema: type: array - items: &691 + items: &693 title: GPG Key description: A unique encryption key type: object @@ -102818,7 +102983,7 @@ paths: - subkeys - revoked examples: - default: &718 + default: &720 value: - id: 3 name: Octocat's GPG Key @@ -102850,7 +103015,7 @@ paths: revoked: false raw_key: string headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -102903,9 +103068,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: &692 + default: &694 value: id: 3 name: Octocat's GPG Key @@ -102962,7 +103127,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &693 + - &695 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102974,9 +103139,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: *692 + default: *694 '404': *6 '304': *37 '403': *29 @@ -102999,7 +103164,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *693 + - *695 responses: '204': description: Response @@ -103142,7 +103307,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103190,11 +103355,11 @@ paths: type: array items: allOf: - - *80 + - *82 examples: - default: *151 + default: *153 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '304': *37 @@ -103218,7 +103383,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -103244,7 +103409,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -103278,12 +103443,12 @@ paths: application/json: schema: anyOf: - - *234 + - *236 - type: object properties: {} additionalProperties: false examples: - default: *235 + default: *237 '204': description: Response when there are no restrictions x-github: @@ -103307,7 +103472,7 @@ paths: required: true content: application/json: - schema: *542 + schema: *544 examples: default: value: @@ -103318,7 +103483,7 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: default: value: @@ -103399,7 +103564,7 @@ paths: - closed - all default: open - - *245 + - *247 - name: sort description: What to sort results by. in: query @@ -103412,7 +103577,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -103422,11 +103587,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *246 + default: *248 headers: - Link: *68 + Link: *70 '404': *6 '304': *37 x-github: @@ -103457,7 +103622,7 @@ paths: application/json: schema: type: array - items: &694 + items: &696 title: Key description: Key type: object @@ -103508,7 +103673,7 @@ paths: verified: false read_only: false headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -103558,9 +103723,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: &695 + default: &697 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103593,15 +103758,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *577 + - *579 responses: '200': description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *695 + default: *697 '404': *6 '304': *37 '403': *29 @@ -103624,7 +103789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *577 + - *579 responses: '204': description: Response @@ -103657,7 +103822,7 @@ paths: application/json: schema: type: array - items: &696 + items: &698 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103714,7 +103879,7 @@ paths: - id - type - login - plan: *104 + plan: *106 required: - billing_cycle - next_billing_date @@ -103725,7 +103890,7 @@ paths: - account - plan examples: - default: &697 + default: &699 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103758,7 +103923,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '304': *37 '401': *25 '404': *6 @@ -103787,11 +103952,11 @@ paths: application/json: schema: type: array - items: *696 + items: *698 examples: - default: *697 + default: *699 headers: - Link: *68 + Link: *70 '304': *37 '401': *25 x-github: @@ -103829,7 +103994,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -103912,7 +104077,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103937,13 +104102,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -104005,7 +104170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 requestBody: required: true content: @@ -104030,7 +104195,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -104102,7 +104267,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -104255,7 +104420,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -104355,7 +104520,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -104535,7 +104700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *254 + - *256 - name: exclude in: query required: false @@ -104548,7 +104713,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -104742,7 +104907,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *254 + - *256 responses: '302': description: Response @@ -104768,7 +104933,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *254 + - *256 responses: '204': description: Response @@ -104797,8 +104962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *254 - - *698 + - *256 + - *700 responses: '204': description: Response @@ -104822,7 +104987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *254 + - *256 - *17 - *19 responses: @@ -104832,11 +104997,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -104869,11 +105034,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -104913,7 +105078,7 @@ paths: - docker - nuget - container - - *699 + - *701 - *19 - *17 responses: @@ -104923,10 +105088,10 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *700 - '400': *701 + default: *702 + '400': *703 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104946,16 +105111,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: &719 + default: &721 value: id: 40201 name: octo-name @@ -105068,8 +105233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 responses: '204': description: Response @@ -105099,8 +105264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 - name: token description: package token schema: @@ -105132,8 +105297,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: - - *262 - - *263 + - *264 + - *265 - *19 - *17 - name: state @@ -105153,7 +105318,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -105202,15 +105367,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -105246,9 +105411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '204': description: Response @@ -105278,9 +105443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '204': description: Response @@ -105317,11 +105482,11 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: - default: *702 + default: *704 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105430,9 +105595,9 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default: &709 + default: &711 summary: Default response value: - id: 1296269 @@ -105553,7 +105718,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -105736,9 +105901,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105776,11 +105941,11 @@ paths: application/json: schema: type: array - items: *544 + items: *546 examples: - default: *703 + default: *705 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105801,7 +105966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *238 + - *240 responses: '204': description: Response @@ -105824,7 +105989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *238 + - *240 responses: '204': description: Response @@ -105857,7 +106022,7 @@ paths: application/json: schema: type: array - items: &704 + items: &706 title: Social account description: Social media account type: object @@ -105872,12 +106037,12 @@ paths: - provider - url examples: - default: &705 + default: &707 value: - provider: twitter url: https://twitter.com/github headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105934,9 +106099,9 @@ paths: application/json: schema: type: array - items: *704 + items: *706 examples: - default: *705 + default: *707 '422': *15 '304': *37 '404': *6 @@ -106023,7 +106188,7 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -106043,7 +106208,7 @@ paths: - title - created_at examples: - default: &737 + default: &739 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106054,7 +106219,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106107,9 +106272,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: &707 + default: &709 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106139,7 +106304,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: - - &708 + - &710 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -106151,9 +106316,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: *707 + default: *709 '404': *6 '304': *37 '403': *29 @@ -106176,7 +106341,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: - - *708 + - *710 responses: '204': description: Response @@ -106205,7 +106370,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &738 + - &740 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 @@ -106228,13 +106393,13 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default-response: *709 + default-response: *711 application/vnd.github.v3.star+json: schema: type: array - items: &739 + items: &741 title: Starred Repository description: Starred Repository type: object @@ -106242,7 +106407,7 @@ paths: starred_at: type: string format: date-time - repo: *80 + repo: *82 required: - starred_at - repo @@ -106370,7 +106535,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -106390,8 +106555,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: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response if this repository is starred by you @@ -106419,8 +106584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -106444,8 +106609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -106478,11 +106643,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -106517,7 +106682,7 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: default: value: @@ -106568,7 +106733,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106595,7 +106760,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *106 + - *108 responses: '200': description: Response @@ -106603,10 +106768,10 @@ paths: application/json: schema: oneOf: - - *684 - - *683 + - *686 + - *685 examples: - default-response: &713 + default-response: &715 summary: Default response value: login: octocat @@ -106641,7 +106806,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &714 + response-with-git-hub-plan-information: &716 summary: Response with GitHub plan information value: login: octocat @@ -106698,14 +106863,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &711 + - &713 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *278 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -106739,9 +106904,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: - draft_issue: *285 + draft_issue: *287 '304': *37 '403': *29 '401': *25 @@ -106764,7 +106929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *710 + - *712 - *17 responses: '200': @@ -106775,7 +106940,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: Link: example: ; rel="next" @@ -106799,8 +106964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *711 - - *278 + - *713 + - *280 requestBody: required: true content: @@ -106871,17 +107036,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *712 + schema: *714 examples: table_view: summary: Response for creating a table view - value: *289 + value: *291 board_view: summary: Response for creating a board view with filter - value: *289 + value: *291 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *291 '304': *37 '403': *29 '401': *25 @@ -106915,7 +107080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *72 + - *74 responses: '200': description: Response @@ -106923,11 +107088,11 @@ paths: application/json: schema: oneOf: - - *684 - - *683 + - *686 + - *685 examples: - default-response: *713 - response-with-git-hub-plan-information: *714 + default-response: *715 + response-with-git-hub-plan-information: *716 '404': *6 x-github: githubCloudOnly: false @@ -106953,7 +107118,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 requestBody: required: true content: @@ -106977,8 +107142,8 @@ paths: required: - subject_digests examples: - default: *715 - withPredicateType: *716 + default: *717 + withPredicateType: *718 responses: '200': description: Response @@ -107031,7 +107196,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *717 + default: *719 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107049,7 +107214,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *72 + - *74 requestBody: required: true content: @@ -107114,7 +107279,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -107145,7 +107310,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *72 + - *74 - name: attestation_id description: Attestation ID in: path @@ -107183,7 +107348,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -107236,12 +107401,12 @@ paths: initiator: type: string examples: - default: *403 + default: *405 '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -107267,7 +107432,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: - - *72 + - *74 responses: '200': description: Response @@ -107275,9 +107440,9 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *700 + default: *702 '403': *29 '401': *25 x-github: @@ -107300,7 +107465,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107310,7 +107475,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -107372,8 +107537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *72 - - *76 + - *74 + - *78 - *17 - *19 responses: @@ -107383,7 +107548,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -107460,7 +107625,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107470,7 +107635,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -107528,7 +107693,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107540,9 +107705,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107559,7 +107724,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107571,9 +107736,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107590,7 +107755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *72 + - *74 - name: target_user in: path required: true @@ -107617,8 +107782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *72 - - *93 + - *74 + - *95 - *17 - *19 responses: @@ -107628,11 +107793,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -107651,7 +107816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107661,11 +107826,11 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: *718 + default: *720 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107687,7 +107852,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *72 + - *74 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -107759,7 +107924,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *72 + - *74 responses: '200': description: Response @@ -107767,7 +107932,7 @@ paths: application/json: schema: *22 examples: - default: *541 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107785,7 +107950,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107820,7 +107985,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107840,7 +108005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107850,11 +108015,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107891,8 +108056,8 @@ paths: - docker - nuget - container - - *699 - - *72 + - *701 + - *74 - *19 - *17 responses: @@ -107902,12 +108067,12 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *700 + default: *702 '403': *29 '401': *25 - '400': *701 + '400': *703 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107927,17 +108092,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *719 + default: *721 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107958,9 +108123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '204': description: Response @@ -107992,9 +108157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 - name: token description: package token schema: @@ -108026,9 +108191,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: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '200': description: Response @@ -108036,7 +108201,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -108094,16 +108259,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *262 - - *263 + - *264 - *265 - - *72 + - *267 + - *74 responses: '200': description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -108138,10 +108303,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 - *265 + - *74 + - *267 responses: '204': description: Response @@ -108173,10 +108338,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 - *265 + - *74 + - *267 responses: '204': description: Response @@ -108200,7 +108365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *72 + - *74 - name: q description: Limit results to projects of the specified type. in: query @@ -108217,11 +108382,11 @@ paths: application/json: schema: type: array - items: *276 + items: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108241,18 +108406,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *278 - - *72 + - *280 + - *74 responses: '200': description: Response content: application/json: - schema: *276 + schema: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108272,8 +108437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *278 - - *72 + - *280 + - *74 - *17 - *47 - *48 @@ -108284,11 +108449,11 @@ paths: application/json: schema: type: array - items: *282 + items: *284 examples: - default: *720 + default: *722 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108307,8 +108472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *72 - - *278 + - *74 + - *280 requestBody: required: true content: @@ -108346,7 +108511,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *721 + items: *723 required: - name - data_type @@ -108362,7 +108527,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *722 + iteration_configuration: *724 required: - name - data_type @@ -108384,20 +108549,20 @@ paths: value: name: Due date data_type: date - single_select_field: *723 - iteration_field: *724 + single_select_field: *725 + iteration_field: *726 responses: '201': description: Response content: application/json: - schema: *282 + schema: *284 examples: - text_field: *725 - number_field: *726 - date_field: *727 - single_select_field: *728 - iteration_field: *729 + text_field: *727 + number_field: *728 + date_field: *729 + single_select_field: *730 + iteration_field: *731 '304': *37 '403': *29 '401': *25 @@ -108418,19 +108583,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *278 - - *730 - - *72 + - *280 + - *732 + - *74 responses: '200': description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: *731 + default: *733 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108451,8 +108616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *278 - - *72 + - *280 + - *74 - *47 - *48 - *17 @@ -108484,11 +108649,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108507,8 +108672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *72 - - *278 + - *74 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -108578,22 +108743,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *287 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *287 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *287 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *287 '304': *37 '403': *29 '401': *25 @@ -108613,9 +108778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -108635,11 +108800,11 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108658,9 +108823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -108730,13 +108895,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *289 + number_field: *289 + date_field: *289 + single_select_field: *289 + iteration_field: *289 '401': *25 '403': *29 '404': *6 @@ -108756,9 +108921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 responses: '204': description: Response @@ -108780,9 +108945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *278 - - *72 - - *732 + - *280 + - *74 + - *734 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -108808,11 +108973,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108838,7 +109003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108848,7 +109013,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108913,7 +109078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108923,7 +109088,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108986,7 +109151,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *72 + - *74 - name: type description: Limit results to repositories of the specified type. in: query @@ -109029,11 +109194,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109053,12 +109218,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *733 + - *126 - *125 + - *735 + - *127 responses: '200': description: Response when getting a billing premium request usage report @@ -109166,7 +109331,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109186,10 +109351,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *72 - - *122 - - *734 - - *123 + - *74 + - *124 + - *736 + - *125 responses: '200': description: Response when getting a billing usage report @@ -109260,7 +109425,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109283,13 +109448,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *735 + - *126 - *125 - - *736 + - *737 + - *127 + - *738 responses: '200': description: Response when getting a billing usage summary @@ -109395,7 +109560,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109413,7 +109578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109423,11 +109588,11 @@ paths: application/json: schema: type: array - items: *704 + items: *706 examples: - default: *705 + default: *707 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109445,7 +109610,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109455,11 +109620,11 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *737 + default: *739 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109481,8 +109646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *72 - - *738 + - *74 + - *740 - *62 - *17 - *19 @@ -109494,13 +109659,13 @@ paths: schema: anyOf: - type: array - items: *739 + items: *741 - type: array - items: *80 + items: *82 examples: - default-response: *709 + default-response: *711 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109517,7 +109682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109527,11 +109692,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *266 + default: *268 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109657,7 +109822,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &740 + enterprise: &742 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109715,7 +109880,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &741 + installation: &743 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109734,7 +109899,7 @@ x-webhooks: required: - id - node_id - organization: &742 + organization: &744 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109794,13 +109959,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &743 + repository: &745 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: &775 + properties: &777 id: description: Unique identifier of the repository example: 42 @@ -109820,8 +109985,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -110495,7 +110660,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &776 + required: &778 - archive_url - assignees_url - blobs_url @@ -110646,10 +110811,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -110725,11 +110890,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: &744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: &746 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) @@ -110952,11 +111117,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: *744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: *746 sender: *4 required: - action @@ -111139,11 +111304,11 @@ x-webhooks: - everyone required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: *744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: *746 sender: *4 required: - action @@ -111227,7 +111392,7 @@ x-webhooks: type: string enum: - completed - check_run: &746 + check_run: &748 title: CheckRun description: A check performed on the code of a given code change type: object @@ -111280,8 +111445,8 @@ x-webhooks: type: string pull_requests: type: array - items: *91 - repository: *159 + items: *93 + repository: *161 status: example: completed type: string @@ -111318,7 +111483,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *745 + deployment: *747 details_url: example: https://example.com type: string @@ -111368,7 +111533,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *91 + items: *93 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -111403,10 +111568,10 @@ x-webhooks: - output - app - pull_requests - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -111797,11 +111962,11 @@ x-webhooks: type: string enum: - created - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -112195,11 +112360,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 requested_action: description: The action requested by the user. type: object @@ -112602,11 +112767,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -113576,10 +113741,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -114268,10 +114433,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -114954,10 +115119,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -115123,7 +115288,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115268,20 +115433,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &747 + commit_oid: &749 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: *740 - installation: *741 - organization: *742 - ref: &748 + enterprise: *742 + installation: *743 + organization: *744 + ref: &750 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: *743 + repository: *745 sender: *4 required: - action @@ -115446,7 +115611,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115676,12 +115841,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -115776,7 +115941,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115947,12 +116112,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -116118,7 +116283,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116284,12 +116449,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -116388,7 +116553,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116563,16 +116728,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 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: *743 + repository: *745 sender: *4 required: - action @@ -116669,7 +116834,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116809,12 +116974,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -116980,7 +117145,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117125,10 +117290,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -117383,10 +117548,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -117466,18 +117631,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *742 - pusher_type: &749 + organization: *744 + pusher_type: &751 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &750 + ref: &752 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -117487,7 +117652,7 @@ x-webhooks: enum: - tag - branch - repository: *743 + repository: *745 sender: *4 required: - ref @@ -117569,10 +117734,10 @@ x-webhooks: type: string enum: - created - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117657,9 +117822,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117736,10 +117901,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117816,10 +117981,10 @@ x-webhooks: type: string enum: - updated - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117896,19 +118061,19 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - repository: *743 - organization: *742 + enterprise: *742 + installation: *743 + repository: *745 + organization: *744 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *294 + items: *296 old_property_values: type: array description: The old custom property values for the repository. - items: *294 + items: *296 required: - action - repository @@ -117984,18 +118149,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - pusher_type: *749 - ref: *750 + enterprise: *742 + installation: *743 + organization: *744 + pusher_type: *751 + ref: *752 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *743 + repository: *745 sender: *4 required: - ref @@ -118075,11 +118240,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118159,11 +118324,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118244,11 +118409,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118329,11 +118494,11 @@ x-webhooks: type: string enum: - created - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118412,11 +118577,11 @@ x-webhooks: type: string enum: - dismissed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118495,11 +118660,11 @@ x-webhooks: type: string enum: - fixed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118579,11 +118744,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118662,11 +118827,11 @@ x-webhooks: type: string enum: - reopened - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118743,9 +118908,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - key: &751 + enterprise: *742 + installation: *743 + key: &753 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -118781,8 +118946,8 @@ x-webhooks: - verified - created_at - read_only - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -118859,11 +119024,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - key: *751 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + key: *753 + organization: *744 + repository: *745 sender: *4 required: - action @@ -119419,12 +119584,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: &757 + workflow: &759 title: Workflow type: object nullable: true @@ -120165,15 +120330,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *752 - required: *753 + properties: *754 + required: *755 nullable: true pull_requests: type: array - items: *596 - repository: *743 - organization: *742 - installation: *741 + items: *598 + repository: *745 + organization: *744 + installation: *743 sender: *4 responses: '200': @@ -120244,7 +120409,7 @@ x-webhooks: type: string enum: - approved - approver: &754 + approver: &756 type: object properties: avatar_url: @@ -120287,11 +120452,11 @@ x-webhooks: type: string comment: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - reviewers: &755 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + reviewers: &757 type: array items: type: object @@ -120370,7 +120535,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &756 + workflow_job_run: &758 type: object properties: conclusion: @@ -121101,18 +121266,18 @@ x-webhooks: type: string enum: - rejected - approver: *754 + approver: *756 comment: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - reviewers: *755 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + reviewers: *757 sender: *4 since: type: string - workflow_job_run: *756 + workflow_job_run: *758 workflow_job_runs: type: array items: @@ -121816,13 +121981,13 @@ x-webhooks: type: string enum: - requested - enterprise: *740 + enterprise: *742 environment: type: string - installation: *741 - organization: *742 - repository: *743 - requestor: &762 + installation: *743 + organization: *744 + repository: *745 + requestor: &764 title: User type: object nullable: true @@ -123711,12 +123876,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Deployment Workflow Run type: object @@ -124396,7 +124561,7 @@ x-webhooks: type: string enum: - answered - answer: &760 + answer: &762 type: object properties: author_association: @@ -124553,11 +124718,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124684,11 +124849,11 @@ x-webhooks: - from required: - category - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124771,11 +124936,11 @@ x-webhooks: type: string enum: - closed - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124857,7 +125022,7 @@ x-webhooks: type: string enum: - created - comment: &759 + comment: &761 type: object properties: author_association: @@ -125014,11 +125179,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125101,12 +125266,12 @@ x-webhooks: type: string enum: - deleted - comment: *759 - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + comment: *761 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125201,12 +125366,12 @@ x-webhooks: - from required: - body - comment: *759 - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + comment: *761 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125290,11 +125455,11 @@ x-webhooks: type: string enum: - created - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125376,11 +125541,11 @@ x-webhooks: type: string enum: - deleted - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125480,11 +125645,11 @@ x-webhooks: type: string required: - from - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125566,10 +125731,10 @@ x-webhooks: type: string enum: - labeled - discussion: *758 - enterprise: *740 - installation: *741 - label: &761 + discussion: *760 + enterprise: *742 + installation: *743 + label: &763 title: Label type: object properties: @@ -125601,8 +125766,8 @@ x-webhooks: - color - default - description - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125685,11 +125850,11 @@ x-webhooks: type: string enum: - locked - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125771,11 +125936,11 @@ x-webhooks: type: string enum: - pinned - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125857,11 +126022,11 @@ x-webhooks: type: string enum: - reopened - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125946,16 +126111,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *758 - new_repository: *743 + new_discussion: *760 + new_repository: *745 required: - new_discussion - new_repository - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -126038,10 +126203,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *758 - old_answer: *760 - organization: *742 - repository: *743 + discussion: *760 + old_answer: *762 + organization: *744 + repository: *745 sender: *4 required: - action @@ -126123,12 +126288,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *758 - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -126211,11 +126376,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -126297,11 +126462,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -126374,7 +126539,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *740 + enterprise: *742 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -127034,9 +127199,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *741 - organization: *742 - repository: *743 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - forkee @@ -127182,9 +127347,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pages: description: The pages that were updated. type: array @@ -127221,7 +127386,7 @@ x-webhooks: - action - sha - html_url - repository: *743 + repository: *745 sender: *4 required: - pages @@ -127297,10 +127462,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: &763 + organization: *744 + repositories: &765 description: An array of repository objects that the installation can access. type: array @@ -127326,8 +127491,8 @@ x-webhooks: - name - full_name - private - repository: *743 - requester: *762 + repository: *745 + requester: *764 sender: *4 required: - action @@ -127402,11 +127567,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127482,11 +127647,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127562,10 +127727,10 @@ x-webhooks: type: string enum: - added - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories_added: &764 + organization: *744 + repositories_added: &766 description: An array of repository objects, which were added to the installation. type: array @@ -127611,15 +127776,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *743 - repository_selection: &765 + repository: *745 + repository_selection: &767 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *762 + requester: *764 sender: *4 required: - action @@ -127698,10 +127863,10 @@ x-webhooks: type: string enum: - removed - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories_added: *764 + organization: *744 + repositories_added: *766 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -127728,9 +127893,9 @@ x-webhooks: - name - full_name - private - repository: *743 - repository_selection: *765 - requester: *762 + repository: *745 + repository_selection: *767 + requester: *764 sender: *4 required: - action @@ -127809,11 +127974,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127991,10 +128156,10 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 target_type: type: string @@ -128073,11 +128238,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -128201,8 +128366,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 reactions: title: Reactions type: object @@ -128251,8 +128416,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true user: title: User @@ -128337,8 +128502,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129127,8 +129292,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129144,7 +129309,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -129477,8 +129642,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -129558,7 +129723,7 @@ x-webhooks: type: string enum: - deleted - comment: &766 + comment: &768 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -129715,8 +129880,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true required: - url @@ -129731,8 +129896,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130517,8 +130682,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130534,7 +130699,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -130869,8 +131034,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -130950,7 +131115,7 @@ x-webhooks: type: string enum: - edited - changes: &795 + changes: &797 description: The changes to the comment. type: object properties: @@ -130962,9 +131127,9 @@ x-webhooks: type: string required: - from - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131752,8 +131917,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131769,7 +131934,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -132102,8 +132267,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -132184,9 +132349,9 @@ x-webhooks: type: string enum: - pinned - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132976,8 +133141,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132993,7 +133158,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -133328,8 +133493,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -133409,9 +133574,9 @@ x-webhooks: type: string enum: - unpinned - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134201,8 +134366,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134218,7 +134383,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -134553,8 +134718,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134637,15 +134802,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134728,15 +134893,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134818,15 +134983,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134909,15 +135074,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134997,10 +135162,10 @@ x-webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *740 - installation: *741 - issue: &769 + assignee: *764 + enterprise: *742 + installation: *743 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135789,14 +135954,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135812,7 +135977,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -135913,8 +136078,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -135994,8 +136159,8 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136789,14 +136954,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136812,7 +136977,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -137048,8 +137213,8 @@ x-webhooks: required: - state - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -137128,8 +137293,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137914,14 +138079,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137937,7 +138102,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -138037,8 +138202,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -138117,8 +138282,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138925,14 +139090,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138948,7 +139113,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -139027,7 +139192,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &767 + milestone: &769 title: Milestone description: A collection of related issues and pull requests. type: object @@ -139165,8 +139330,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -139265,8 +139430,8 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140055,14 +140220,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140075,7 +140240,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -140179,9 +140344,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *742 - repository: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -140261,8 +140426,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141050,14 +141215,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141070,7 +141235,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -141174,9 +141339,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *742 - repository: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -141256,8 +141421,8 @@ x-webhooks: type: string enum: - locked - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142069,14 +142234,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142089,7 +142254,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -142170,8 +142335,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -142250,8 +142415,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143057,14 +143222,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143080,7 +143245,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -143158,9 +143323,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *767 - organization: *742 - repository: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -144023,11 +144188,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144055,8 +144220,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -144128,7 +144293,7 @@ x-webhooks: required: - login - id - type: *242 + type: *244 required: - id - number @@ -144608,8 +144773,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145393,11 +145558,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145413,7 +145578,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -145426,8 +145591,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -145521,8 +145686,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -145602,9 +145767,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *740 - installation: *741 - issue: &768 + enterprise: *742 + installation: *743 + issue: &770 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146387,14 +146552,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146410,7 +146575,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -146510,8 +146675,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -146590,8 +146755,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147401,14 +147566,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147502,9 +147667,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *242 - organization: *742 - repository: *743 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -148370,14 +148535,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148393,7 +148558,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -148972,11 +149137,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *740 - installation: *741 - issue: *768 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *770 + organization: *744 + repository: *745 sender: *4 required: - action @@ -149056,12 +149221,12 @@ x-webhooks: type: string enum: - typed - enterprise: *740 - installation: *741 - issue: *769 - type: *242 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -149142,7 +149307,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &798 + assignee: &800 title: User type: object nullable: true @@ -149212,11 +149377,11 @@ x-webhooks: required: - login - id - enterprise: *740 - installation: *741 - issue: *769 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + organization: *744 + repository: *745 sender: *4 required: - action @@ -149295,12 +149460,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *740 - installation: *741 - issue: *769 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -149380,8 +149545,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150191,14 +150356,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150214,7 +150379,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -150292,8 +150457,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150373,11 +150538,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *740 - installation: *741 - issue: *768 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *770 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150456,12 +150621,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *740 - installation: *741 - issue: *769 - type: *242 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150541,11 +150706,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150623,11 +150788,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150737,11 +150902,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150823,9 +150988,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: &770 + enterprise: *742 + installation: *743 + marketplace_purchase: &772 title: Marketplace Purchase type: object required: @@ -150908,8 +151073,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *742 - previous_marketplace_purchase: &771 + organization: *744 + previous_marketplace_purchase: &773 title: Marketplace Purchase type: object properties: @@ -150989,7 +151154,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -151069,10 +151234,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -151155,7 +151320,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -151237,10 +151402,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -151322,7 +151487,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -151403,8 +151568,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 marketplace_purchase: title: Marketplace Purchase type: object @@ -151486,9 +151651,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *742 - previous_marketplace_purchase: *771 - repository: *743 + organization: *744 + previous_marketplace_purchase: *773 + repository: *745 sender: *4 required: - action @@ -151568,12 +151733,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 - previous_marketplace_purchase: *771 - repository: *743 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 + previous_marketplace_purchase: *773 + repository: *745 sender: *4 required: - action @@ -151675,11 +151840,11 @@ x-webhooks: type: string required: - to - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151779,11 +151944,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151862,11 +152027,11 @@ x-webhooks: type: string enum: - removed - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151944,11 +152109,11 @@ x-webhooks: type: string enum: - added - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152024,7 +152189,7 @@ x-webhooks: required: - login - id - team: &772 + team: &774 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -152247,11 +152412,11 @@ x-webhooks: type: string enum: - removed - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152328,7 +152493,7 @@ x-webhooks: required: - login - id - team: *772 + team: *774 required: - action - scope @@ -152410,8 +152575,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *741 - merge_group: &774 + installation: *743 + merge_group: &776 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -152430,15 +152595,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *773 + head_commit: *775 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152524,10 +152689,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *741 - merge_group: *774 - organization: *742 - repository: *743 + installation: *743 + merge_group: *776 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152600,7 +152765,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 + enterprise: *742 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -152709,16 +152874,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *741 - organization: *742 + installation: *743 + organization: *744 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -152799,11 +152964,11 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152882,9 +153047,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - milestone: &777 + enterprise: *742 + installation: *743 + milestone: &779 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153021,8 +153186,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153101,11 +153266,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153215,11 +153380,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153299,11 +153464,11 @@ x-webhooks: type: string enum: - opened - enterprise: *740 - installation: *741 - milestone: *777 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *779 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153382,11 +153547,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *762 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + blocked_user: *764 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153465,11 +153630,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *762 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + blocked_user: *764 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153548,9 +153713,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - membership: &778 + enterprise: *742 + installation: *743 + membership: &780 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -153657,8 +153822,8 @@ x-webhooks: - role - organization_url - user - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153736,11 +153901,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153819,8 +153984,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153936,10 +154101,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 - user: *762 + user: *764 required: - action - invitation @@ -154017,11 +154182,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -154108,11 +154273,11 @@ x-webhooks: properties: from: type: string - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -154189,9 +154354,9 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 package: description: Information about the package. type: object @@ -154690,7 +154855,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &779 + items: &781 title: Ruby Gems metadata type: object properties: @@ -154785,7 +154950,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -154861,9 +155026,9 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 package: description: Information about the package. type: object @@ -155216,7 +155381,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *779 + items: *781 source_url: type: string format: uri @@ -155286,7 +155451,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -155462,12 +155627,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *740 + enterprise: *742 id: type: integer - installation: *741 - organization: *742 - repository: *743 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - id @@ -155544,7 +155709,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &780 + personal_access_token_request: &782 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -155690,10 +155855,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *740 - organization: *742 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155770,11 +155935,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *780 - enterprise: *740 - organization: *742 + personal_access_token_request: *782 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155850,11 +156015,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *780 - enterprise: *740 - organization: *742 + personal_access_token_request: *782 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155929,11 +156094,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *780 - organization: *742 - enterprise: *740 + personal_access_token_request: *782 + organization: *744 + enterprise: *742 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -156038,7 +156203,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *781 + last_response: *783 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -156070,8 +156235,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 zen: description: Random string of GitHub zen. @@ -156316,10 +156481,10 @@ x-webhooks: - from required: - note - enterprise: *740 - installation: *741 - organization: *742 - project_card: &782 + enterprise: *742 + installation: *743 + organization: *744 + project_card: &784 title: Project Card type: object properties: @@ -156438,7 +156603,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -156519,11 +156684,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project_card: *782 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_card: *784 + repository: *745 sender: *4 required: - action @@ -156603,9 +156768,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 project_card: title: Project Card type: object @@ -156733,8 +156898,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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -156828,11 +156993,11 @@ x-webhooks: - from required: - note - enterprise: *740 - installation: *741 - organization: *742 - project_card: *782 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_card: *784 + repository: *745 sender: *4 required: - action @@ -156926,9 +157091,9 @@ x-webhooks: - from required: - column_id - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 project_card: allOf: - title: Project Card @@ -157118,7 +157283,7 @@ x-webhooks: type: string required: - after_id - repository: *743 + repository: *745 sender: *4 required: - action @@ -157198,10 +157363,10 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - organization: *742 - project: &784 + enterprise: *742 + installation: *743 + organization: *744 + project: &786 title: Project type: object properties: @@ -157325,7 +157490,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -157405,10 +157570,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project_column: &783 + enterprise: *742 + installation: *743 + organization: *744 + project_column: &785 title: Project Column type: object properties: @@ -157447,7 +157612,7 @@ x-webhooks: - name - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -157526,18 +157691,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -157627,11 +157792,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 + repository: *745 sender: *4 required: - action @@ -157711,11 +157876,11 @@ x-webhooks: type: string enum: - moved - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 + repository: *745 sender: *4 required: - action @@ -157795,11 +157960,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -157879,18 +158044,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - project: *784 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -157992,11 +158157,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -158075,11 +158240,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -158160,9 +158325,9 @@ x-webhooks: type: string enum: - closed - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158243,9 +158408,9 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158326,9 +158491,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158445,9 +158610,9 @@ x-webhooks: type: string to: type: string - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158530,7 +158695,7 @@ x-webhooks: type: string enum: - archived - changes: &788 + changes: &790 type: object properties: archived_at: @@ -158544,9 +158709,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *741 - organization: *742 - projects_v2_item: &785 + installation: *743 + organization: *744 + projects_v2_item: &787 title: Projects v2 Item description: An item belonging to a project type: object @@ -158564,7 +158729,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *283 + content_type: *285 creator: *4 created_at: type: string @@ -158681,9 +158846,9 @@ x-webhooks: nullable: true to: type: string - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158765,9 +158930,9 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158848,9 +159013,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158956,7 +159121,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &786 + - &788 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158978,7 +159143,7 @@ x-webhooks: required: - id - name - - &787 + - &789 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -159012,8 +159177,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *786 - - *787 + - *788 + - *789 required: - field_value - type: object @@ -159029,9 +159194,9 @@ x-webhooks: nullable: true required: - body - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -159126,9 +159291,9 @@ x-webhooks: to: type: string nullable: true - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -159211,10 +159376,10 @@ x-webhooks: type: string enum: - restored - changes: *788 - installation: *741 - organization: *742 - projects_v2_item: *785 + changes: *790 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -159296,9 +159461,9 @@ x-webhooks: type: string enum: - reopened - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -159379,14 +159544,14 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2_status_update: &791 + installation: *743 + organization: *744 + projects_v2_status_update: &793 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *789 - required: *790 + properties: *791 + required: *792 sender: *4 required: - action @@ -159467,9 +159632,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2_status_update: *791 + installation: *743 + organization: *744 + projects_v2_status_update: *793 sender: *4 required: - action @@ -159605,9 +159770,9 @@ x-webhooks: type: string format: date nullable: true - installation: *741 - organization: *742 - projects_v2_status_update: *791 + installation: *743 + organization: *744 + projects_v2_status_update: *793 sender: *4 required: - action @@ -159678,10 +159843,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - repository @@ -159758,13 +159923,13 @@ x-webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *740 - installation: *741 - number: &792 + assignee: *764 + enterprise: *742 + installation: *743 + number: &794 description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -162069,7 +162234,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -162151,11 +162316,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -164455,7 +164620,7 @@ x-webhooks: - draft reason: type: string - repository: *743 + repository: *745 sender: *4 required: - action @@ -164537,11 +164702,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -166841,7 +167006,7 @@ x-webhooks: - draft reason: type: string - repository: *743 + repository: *745 sender: *4 required: - action @@ -166923,13 +167088,13 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: &793 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: &795 allOf: - - *596 + - *598 - type: object properties: allow_auto_merge: @@ -166991,7 +167156,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *743 + repository: *745 sender: *4 required: - action @@ -167072,12 +167237,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -167157,11 +167322,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *740 - milestone: *580 - number: *792 - organization: *742 - pull_request: &794 + enterprise: *742 + milestone: *582 + number: *794 + organization: *744 + pull_request: &796 title: Pull Request type: object properties: @@ -169446,7 +169611,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -169525,11 +169690,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -171833,7 +171998,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *743 + repository: *745 sender: *4 required: - action @@ -171957,12 +172122,12 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -172042,11 +172207,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -174335,7 +174500,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -174415,11 +174580,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *740 - installation: *741 - label: *761 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + label: *763 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -176723,7 +176888,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -176804,10 +176969,10 @@ x-webhooks: type: string enum: - locked - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -179109,7 +179274,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -179189,12 +179354,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *740 - milestone: *580 - number: *792 - organization: *742 - pull_request: *794 - repository: *743 + enterprise: *742 + milestone: *582 + number: *794 + organization: *744 + pull_request: *796 + repository: *745 sender: *4 required: - action @@ -179273,12 +179438,12 @@ x-webhooks: type: string enum: - opened - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -179359,12 +179524,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -179444,12 +179609,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -179815,9 +179980,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -182009,7 +182174,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -182089,7 +182254,7 @@ x-webhooks: type: string enum: - deleted - comment: &796 + comment: &798 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -182374,9 +182539,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -184556,7 +184721,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -184636,11 +184801,11 @@ x-webhooks: type: string enum: - edited - changes: *795 - comment: *796 - enterprise: *740 - installation: *741 - organization: *742 + changes: *797 + comment: *798 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -186823,7 +186988,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -186904,9 +187069,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -189101,7 +189266,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 review: description: The review that was affected. type: object @@ -189348,9 +189513,9 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -191404,8 +191569,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 - review: &797 + repository: *745 + review: &799 description: The review that was affected. type: object properties: @@ -191638,12 +191803,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -193948,7 +194113,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_reviewer: title: User type: object @@ -194032,12 +194197,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -196349,7 +196514,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196541,12 +196706,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -198853,7 +199018,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_reviewer: title: User type: object @@ -198938,12 +199103,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -201241,7 +201406,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201422,9 +201587,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -203621,8 +203786,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 - review: *797 + repository: *745 + review: *799 sender: *4 required: - action @@ -203702,9 +203867,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -205796,7 +205961,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 sender: *4 thread: type: object @@ -206183,9 +206348,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -208263,7 +208428,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 sender: *4 thread: type: object @@ -208653,10 +208818,10 @@ x-webhooks: type: string before: type: string - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -210949,7 +211114,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -211031,11 +211196,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *798 - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + assignee: *800 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -213340,7 +213505,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -213419,11 +213584,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *740 - installation: *741 - label: *761 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + label: *763 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -215718,7 +215883,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -215799,10 +215964,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -218089,7 +218254,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -218289,7 +218454,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *740 + enterprise: *742 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -218381,8 +218546,8 @@ x-webhooks: - url - author - committer - installation: *741 - organization: *742 + installation: *743 + organization: *744 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -218968,9 +219133,9 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 registry_package: type: object properties: @@ -219416,7 +219581,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *779 + items: *781 summary: type: string tag_name: @@ -219470,7 +219635,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -219548,9 +219713,9 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 registry_package: type: object properties: @@ -219858,7 +220023,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *779 + items: *781 summary: type: string tag_name: @@ -219907,7 +220072,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -219984,10 +220149,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - release: &799 + enterprise: *742 + installation: *743 + organization: *744 + release: &801 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -220305,7 +220470,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *743 + repository: *745 sender: *4 required: - action @@ -220382,11 +220547,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -220503,11 +220668,11 @@ x-webhooks: type: boolean required: - to - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -220585,9 +220750,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -220909,7 +221074,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *743 + repository: *745 sender: *4 required: - action @@ -220985,10 +221150,10 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - release: &800 + enterprise: *742 + installation: *743 + organization: *744 + release: &802 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221307,7 +221472,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *743 + repository: *745 sender: *4 required: - action @@ -221383,11 +221548,11 @@ x-webhooks: type: string enum: - released - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -221463,11 +221628,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *740 - installation: *741 - organization: *742 - release: *800 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *802 + repository: *745 sender: *4 required: - action @@ -221543,11 +221708,11 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_advisory: *663 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_advisory: *665 sender: *4 required: - action @@ -221623,11 +221788,11 @@ x-webhooks: type: string enum: - reported - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_advisory: *663 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_advisory: *665 sender: *4 required: - action @@ -221703,10 +221868,10 @@ x-webhooks: type: string enum: - archived - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221783,10 +221948,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221864,10 +222029,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221951,10 +222116,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222066,10 +222231,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222141,10 +222306,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 status: type: string @@ -222225,10 +222390,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222305,10 +222470,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222402,10 +222567,10 @@ x-webhooks: - name required: - repository - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222485,11 +222650,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 sender: *4 required: - action @@ -222567,11 +222732,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 sender: *4 required: - action @@ -222649,11 +222814,11 @@ x-webhooks: type: string enum: - edited - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 changes: type: object properties: @@ -222672,16 +222837,16 @@ x-webhooks: properties: added: type: array - items: *298 + items: *300 deleted: type: array - items: *298 + items: *300 updated: type: array items: type: object properties: - condition: *298 + condition: *300 changes: type: object properties: @@ -222714,16 +222879,16 @@ x-webhooks: properties: added: type: array - items: *616 + items: *618 deleted: type: array - items: *616 + items: *618 updated: type: array items: type: object properties: - rule: *616 + rule: *618 changes: type: object properties: @@ -222957,10 +223122,10 @@ x-webhooks: - from required: - owner - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223038,10 +223203,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223119,7 +223284,7 @@ x-webhooks: type: string enum: - create - alert: &801 + alert: &803 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -223241,10 +223406,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223450,10 +223615,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223531,11 +223696,11 @@ x-webhooks: type: string enum: - reopen - alert: *801 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *803 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223734,10 +223899,10 @@ x-webhooks: enum: - fixed - open - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223815,11 +223980,11 @@ x-webhooks: type: string enum: - assigned - alert: &802 + alert: &804 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -223827,8 +223992,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri @@ -223958,10 +224123,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224039,11 +224204,11 @@ x-webhooks: type: string enum: - created - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224124,11 +224289,11 @@ x-webhooks: type: string enum: - created - alert: *802 - installation: *741 - location: *803 - organization: *742 - repository: *743 + alert: *804 + installation: *743 + location: *805 + organization: *744 + repository: *745 sender: *4 required: - location @@ -224366,11 +224531,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224448,11 +224613,11 @@ x-webhooks: type: string enum: - reopened - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224530,11 +224695,11 @@ x-webhooks: type: string enum: - resolved - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224612,12 +224777,12 @@ x-webhooks: type: string enum: - unassigned - alert: *802 + alert: *804 assignee: *4 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224695,11 +224860,11 @@ x-webhooks: type: string enum: - validated - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224825,10 +224990,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *743 - enterprise: *740 - installation: *741 - organization: *742 + repository: *745 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -224906,11 +225071,11 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - security_advisory: &804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + security_advisory: &806 description: The details of the security advisory, including summary, description, and severity. type: object @@ -225093,11 +225258,11 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - security_advisory: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + security_advisory: *806 sender: *4 required: - action @@ -225170,10 +225335,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -225357,11 +225522,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *740 - installation: *741 - organization: *742 - repository: *345 + security_and_analysis: *299 + enterprise: *742 + installation: *743 + organization: *744 + repository: *347 sender: *4 required: - changes @@ -225439,12 +225604,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: &805 + sponsorship: &807 type: object properties: created_at: @@ -225745,12 +225910,12 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - sponsorship @@ -225838,12 +226003,12 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -225920,17 +226085,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &806 + effective_date: &808 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: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - sponsorship @@ -226004,7 +226169,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &807 + changes: &809 type: object properties: tier: @@ -226048,13 +226213,13 @@ x-webhooks: - from required: - tier - effective_date: *806 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + effective_date: *808 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -226131,13 +226296,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *807 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + changes: *809 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -226211,10 +226376,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226297,10 +226462,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226720,15 +226885,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *740 + enterprise: *742 id: description: The unique identifier of the status. type: integer - installation: *741 + installation: *743 name: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 sha: description: The Commit SHA. @@ -226837,15 +227002,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *741 - organization: *742 - repository: *743 + sub_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -226929,15 +227094,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *741 - organization: *742 - repository: *743 + sub_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -227021,15 +227186,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *741 - organization: *742 - repository: *743 + parent_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -227113,15 +227278,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *741 - organization: *742 - repository: *743 + parent_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -227198,12 +227363,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - team: &808 + team: &810 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -227426,9 +227591,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -227886,7 +228051,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -227962,9 +228127,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -228422,7 +228587,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -228499,9 +228664,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -228959,7 +229124,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -229103,9 +229268,9 @@ x-webhooks: - from required: - permissions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -229563,7 +229728,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - changes @@ -229641,9 +229806,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -230101,7 +230266,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -230177,10 +230342,10 @@ x-webhooks: type: string enum: - started - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -230253,16 +230418,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *740 + enterprise: *742 inputs: type: object nullable: true additionalProperties: true - installation: *741 - organization: *742 + installation: *743 + organization: *744 ref: type: string - repository: *743 + repository: *745 sender: *4 workflow: type: string @@ -230344,10 +230509,10 @@ x-webhooks: type: string enum: - completed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: allOf: @@ -230584,7 +230749,7 @@ x-webhooks: type: string required: - conclusion - deployment: *506 + deployment: *508 required: - action - repository @@ -230663,10 +230828,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: allOf: @@ -230926,7 +231091,7 @@ x-webhooks: required: - status - steps - deployment: *506 + deployment: *508 required: - action - repository @@ -231005,10 +231170,10 @@ x-webhooks: type: string enum: - queued - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: type: object @@ -231143,7 +231308,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *506 + deployment: *508 required: - action - repository @@ -231222,10 +231387,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: type: object @@ -231361,7 +231526,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *506 + deployment: *508 required: - action - repository @@ -231441,12 +231606,12 @@ x-webhooks: type: string enum: - completed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -232445,12 +232610,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -233434,12 +233599,12 @@ x-webhooks: type: string enum: - requested - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 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 0d05e5b8bd..63072d2dc1 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 @@ -24849,6 +24849,905 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + } + } + }, + "additionalProperties": false + }, + "examples": { + "default": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + } + } + } + } + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-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": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-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": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", 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 adeb1df704..8bd2f1a0ad 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 @@ -829,7 +829,7 @@ paths: - subscriptions_url - type - url - type: &330 + type: &332 type: string description: The type of credit the user is receiving. enum: @@ -961,7 +961,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &129 + schema: &131 title: Validation Error Simple description: Validation Error Simple type: object @@ -994,7 +994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &665 + - &667 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1109,7 +1109,7 @@ paths: GitHub. type: object nullable: true - properties: &81 + properties: &83 id: description: Unique identifier of the GitHub app example: 37 @@ -1242,7 +1242,7 @@ paths: about itself. example: 5 type: integer - required: &82 + required: &84 - id - node_id - owner @@ -1547,7 +1547,7 @@ paths: schema: type: integer default: 30 - - &216 + - &218 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 @@ -1556,7 +1556,7 @@ paths: required: false schema: type: string - - &217 + - &219 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -1576,7 +1576,7 @@ paths: application/json: schema: type: array - items: &218 + items: &220 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1656,7 +1656,7 @@ paths: - installation_id - repository_id examples: - default: &219 + default: &221 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1715,7 +1715,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &128 + schema: &130 title: Validation Error description: Validation Error type: object @@ -1784,7 +1784,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &222 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1898,7 +1898,7 @@ paths: - request - response examples: - default: &221 + default: &223 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2099,7 +2099,7 @@ paths: parameters: - *17 - *19 - - &93 + - &95 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) @@ -2682,7 +2682,7 @@ paths: suspended_at: suspended_by: headers: - Link: &68 + Link: &70 example: ; rel="next", ; rel="last" schema: @@ -2871,11 +2871,11 @@ paths: - selected repositories: type: array - items: &80 + items: &82 title: Repository description: A repository on GitHub. type: object - properties: &295 + properties: &297 id: description: Unique identifier of the repository example: 42 @@ -2895,7 +2895,7 @@ paths: title: License Simple description: License Simple type: object - properties: &89 + properties: &91 key: type: string example: mit @@ -2917,7 +2917,7 @@ paths: html_url: type: string format: uri - required: &90 + required: &92 - key - name - url @@ -3311,7 +3311,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &296 + required: &298 - archive_url - assignees_url - blobs_url @@ -7251,7 +7251,7 @@ paths: required: true content: application/json: - schema: &141 + schema: &143 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -7951,7 +7951,7 @@ paths: description: Response content: application/json: - schema: &188 + schema: &190 type: array description: A list of default code security configurations items: @@ -7967,7 +7967,7 @@ paths: default configuration: *49 examples: - default: &189 + default: &191 value: - default_for_new_repos: public configuration: @@ -8429,7 +8429,7 @@ paths: default: value: default_for_new_repos: all - configuration: &187 + configuration: &189 value: id: 1325 target_type: organization @@ -8519,7 +8519,7 @@ paths: application/json: schema: type: array - items: &190 + items: &192 type: object description: Repositories associated with a code security configuration and attachment status @@ -8541,7 +8541,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &208 + properties: &68 id: type: integer format: int64 @@ -8768,7 +8768,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: &209 + required: &69 - archive_url - assignees_url - blobs_url @@ -8820,7 +8820,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &191 + repository: &193 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9325,7 +9325,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &197 + - &199 name: classification in: query description: |- @@ -9334,7 +9334,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &198 + - &200 name: state in: query description: |- @@ -9343,7 +9343,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &199 + - &201 name: severity in: query description: |- @@ -9352,7 +9352,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &200 + - &202 name: ecosystem in: query description: |- @@ -9361,14 +9361,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &201 + - &203 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 - - &202 + - &204 name: epss_percentage in: query description: |- @@ -9380,7 +9380,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 - - &495 + - &497 name: has in: query description: |- @@ -9394,7 +9394,7 @@ paths: type: string enum: - patch - - &203 + - &205 name: assignee in: query description: |- @@ -9403,7 +9403,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &204 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9413,7 +9413,7 @@ paths: enum: - development - runtime - - &205 + - &207 name: sort in: query description: |- @@ -9439,11 +9439,11 @@ paths: application/json: schema: type: array - items: &206 + items: &208 type: object description: A Dependabot alert. properties: - number: &177 + number: &179 type: integer description: The security alert number. readOnly: true @@ -9506,7 +9506,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &496 + security_advisory: &498 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9694,29 +9694,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *66 - url: &180 + url: &182 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &181 + html_url: &183 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &178 + created_at: &180 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: &179 + updated_at: &181 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: &183 + dismissed_at: &185 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9746,21 +9746,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &182 + fixed_at: &184 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: &497 + auto_dismissed_at: &499 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: &498 + dismissal_request: &500 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9822,7 +9822,7 @@ paths: - repository additionalProperties: false examples: - default: &207 + default: &209 value: - number: 2 state: dismissed @@ -10170,6 +10170,266 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - *40 + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: &210 + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able + to access in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + title: Simple Repository + description: A GitHub repository. + type: object + properties: *68 + required: *69 + nullable: true + additionalProperties: false + examples: + default: &211 + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -10191,7 +10451,7 @@ paths: application/json: schema: type: array - items: &69 + items: &71 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10262,7 +10522,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -10335,9 +10595,9 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: &77 + default: &79 value: id: 1 name: Justice League @@ -10366,7 +10626,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &70 + - &72 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10385,7 +10645,7 @@ paths: type: array items: *4 examples: - default: &71 + default: &73 value: - login: octocat id: 1 @@ -10406,7 +10666,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10424,7 +10684,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10455,7 +10715,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10473,7 +10733,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10504,7 +10764,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10522,8 +10782,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *70 - - &72 + - *72 + - &74 name: username description: The handle for the GitHub user account. in: path @@ -10537,7 +10797,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &73 + exampleKey1: &75 value: login: octocat id: 1 @@ -10573,8 +10833,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *70 - *72 + - *74 responses: '201': description: Successfully added team member @@ -10582,7 +10842,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *73 + exampleKey1: *75 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10600,8 +10860,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *70 - *72 + - *74 responses: '204': description: Response @@ -10623,7 +10883,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *70 + - *72 - *17 - *19 responses: @@ -10633,11 +10893,11 @@ paths: application/json: schema: type: array - items: &74 + items: &76 title: Organization Simple description: A GitHub organization. type: object - properties: &193 + properties: &195 login: type: string example: github @@ -10678,7 +10938,7 @@ paths: type: string example: A great organization nullable: true - required: &194 + required: &196 - login - url - id @@ -10692,7 +10952,7 @@ paths: - avatar_url - description examples: - default: &75 + default: &77 value: login: github id: 1 @@ -10723,7 +10983,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10751,9 +11011,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &117 + default: &119 value: - login: github id: 1 @@ -10784,7 +11044,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10825,8 +11085,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *70 - - &76 + - *72 + - &78 name: org description: The organization name. The name is not case sensitive. in: path @@ -10838,9 +11098,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 '404': description: The team is not assigned to the organization x-github: @@ -10859,16 +11119,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10885,8 +11145,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10910,7 +11170,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &78 + - &80 name: team_slug description: The slug of the team name. in: path @@ -10922,11 +11182,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -10944,7 +11204,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *78 + - *80 requestBody: required: true content: @@ -10999,11 +11259,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -11024,7 +11284,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *78 + - *80 responses: '204': description: Response @@ -11062,7 +11322,7 @@ paths: application/json: schema: type: array - items: &112 + items: &114 title: Event description: Event type: object @@ -11072,7 +11332,7 @@ paths: type: type: string nullable: true - actor: &79 + actor: &81 title: Actor description: Actor type: object @@ -11112,7 +11372,7 @@ paths: - id - name - url - org: *79 + org: *81 payload: oneOf: - title: CreateEvent @@ -11158,7 +11418,7 @@ paths: properties: action: type: string - discussion: &758 + discussion: &760 title: Discussion description: A Discussion in a repository. type: object @@ -11445,7 +11705,7 @@ paths: - id labels: type: array - items: &85 + items: &87 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11520,12 +11780,12 @@ paths: properties: action: type: string - issue: &86 + issue: &88 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &550 + properties: &552 id: type: integer format: int64 @@ -11631,7 +11891,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &279 + properties: &281 url: type: string format: uri @@ -11701,7 +11961,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &280 + required: &282 - closed_issues - creator - description @@ -11780,7 +12040,7 @@ paths: timeline_url: type: string format: uri - type: &242 + type: &244 title: Issue Type description: The type of issue. type: object @@ -11830,7 +12090,7 @@ paths: - node_id - name - description - repository: *80 + repository: *82 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11841,9 +12101,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - author_association: &83 + properties: *83 + required: *84 + author_association: &85 title: author_association type: string example: OWNER @@ -11858,7 +12118,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &84 + reactions: &86 title: Reaction Rollup type: object properties: @@ -11894,7 +12154,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &676 + sub_issues_summary: &678 title: Sub-issues Summary type: object properties: @@ -11919,7 +12179,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &87 + properties: &89 id: description: Unique identifier of the issue comment example: 42 @@ -11962,7 +12222,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11973,15 +12233,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &573 + properties: &575 pinned_at: type: string format: date-time @@ -11993,11 +12253,11 @@ paths: properties: *20 required: *21 nullable: true - required: &574 + required: &576 - pinned_at - pinned_by nullable: true - required: &88 + required: &90 - id - node_id - html_url @@ -12007,7 +12267,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &677 + issue_dependencies_summary: &679 title: Issue Dependencies Summary type: object properties: @@ -12026,7 +12286,7 @@ paths: - total_blocking issue_field_values: type: array - items: &557 + items: &559 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12087,7 +12347,7 @@ paths: - node_id - data_type - value - required: &551 + required: &553 - closed_at - comments - comments_url @@ -12111,10 +12371,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - issue @@ -12123,14 +12383,14 @@ paths: properties: action: type: string - issue: *86 - comment: &546 + issue: *88 + comment: &548 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 required: - action - issue @@ -12303,8 +12563,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true allow_forking: type: boolean @@ -12393,7 +12653,7 @@ paths: type: string number: type: integer - pull_request: &91 + pull_request: &93 title: Pull Request Minimal type: object properties: @@ -12464,10 +12724,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - number @@ -12477,7 +12737,7 @@ paths: properties: action: type: string - pull_request: *91 + pull_request: *93 comment: type: object properties: @@ -12728,7 +12988,7 @@ paths: - pull_request updated_at: type: string - pull_request: *91 + pull_request: *93 required: - action - review @@ -12777,7 +13037,7 @@ paths: updated_at: type: string format: date-time - reactions: *84 + reactions: *86 required: - action - comment @@ -12788,7 +13048,7 @@ paths: type: string release: allOf: - - &607 + - &609 title: Release description: A release. type: object @@ -12859,7 +13119,7 @@ paths: author: *4 assets: type: array - items: &608 + items: &610 title: Release Asset description: Data related to a release. type: object @@ -12934,7 +13194,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *84 + reactions: *86 required: - assets_url - upload_url @@ -13026,7 +13286,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &120 + '503': &122 description: Service unavailable content: application/json: @@ -13119,7 +13379,7 @@ paths: _links: type: object properties: - timeline: &92 + timeline: &94 title: Link With Type description: Hypermedia Link with Type type: object @@ -13131,17 +13391,17 @@ paths: required: - href - type - user: *92 - security_advisories: *92 - current_user: *92 - current_user_public: *92 - current_user_actor: *92 - current_user_organization: *92 + user: *94 + security_advisories: *94 + current_user: *94 + current_user_public: *94 + current_user_actor: *94 + current_user_organization: *94 current_user_organizations: type: array - items: *92 - repository_discussions: *92 - repository_discussions_category: *92 + items: *94 + repository_discussions: *94 + repository_discussions_category: *94 required: - timeline - user @@ -13203,7 +13463,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *93 + - *95 - *17 - *19 responses: @@ -13213,7 +13473,7 @@ paths: application/json: schema: type: array - items: &94 + items: &96 title: Base Gist description: Base Gist type: object @@ -13298,7 +13558,7 @@ paths: - created_at - updated_at examples: - default: &95 + default: &97 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13343,7 +13603,7 @@ paths: site_admin: false truncated: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 x-github: @@ -13419,7 +13679,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Gist Simple description: Gist Simple type: object @@ -13587,7 +13847,7 @@ paths: truncated: type: boolean examples: - default: &97 + default: &99 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13691,7 +13951,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -13701,11 +13961,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -13725,7 +13985,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -13735,11 +13995,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '401': *25 '304': *37 '403': *29 @@ -13764,7 +14024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &98 + - &100 name: gist_id description: The unique identifier of the gist. in: path @@ -13776,10 +14036,10 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 - '403': &101 + default: *99 + '403': &103 description: Forbidden Gist content: application/json: @@ -13826,7 +14086,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *98 + - *100 requestBody: required: true content: @@ -13886,9 +14146,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - updateGist: *97 + updateGist: *99 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -14046,7 +14306,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14074,7 +14334,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14084,7 +14344,7 @@ paths: application/json: schema: type: array - items: &99 + items: &101 title: Gist Comment description: A comment made to a gist. type: object @@ -14119,7 +14379,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *83 + author_association: *85 required: - url - id @@ -14159,7 +14419,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -14183,7 +14443,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *98 + - *100 requestBody: required: true content: @@ -14208,9 +14468,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: &100 + default: &102 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14267,8 +14527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *98 - - &102 + - *100 + - &104 name: comment_id description: The unique identifier of the comment. in: path @@ -14281,12 +14541,12 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '304': *37 '404': *6 - '403': *101 + '403': *103 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14307,8 +14567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 requestBody: required: true content: @@ -14333,9 +14593,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '404': *6 x-github: githubCloudOnly: false @@ -14352,8 +14612,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 responses: '204': description: Response @@ -14376,7 +14636,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14477,7 +14737,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14487,7 +14747,7 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: default: value: @@ -14533,7 +14793,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 '304': *37 '403': *29 @@ -14552,13 +14812,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *98 + - *100 responses: '201': description: Response content: application/json: - schema: *94 + schema: *96 examples: default: value: @@ -14628,7 +14888,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *98 + - *100 responses: '204': description: Response if gist is starred @@ -14658,7 +14918,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14680,7 +14940,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14708,7 +14968,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *98 + - *100 - name: sha in: path required: true @@ -14719,9 +14979,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 + default: *99 '422': *15 '404': *6 '403': *29 @@ -14882,7 +15142,7 @@ paths: type: array items: allOf: - - *80 + - *82 repository_selection: type: string example: selected @@ -15005,7 +15265,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '403': *29 '304': *37 '401': *25 @@ -15089,7 +15349,7 @@ paths: - closed - all default: open - - &245 + - &247 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15108,7 +15368,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - name: collab in: query required: false @@ -15138,9 +15398,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &246 + default: &248 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15385,7 +15645,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '404': *6 @@ -15424,8 +15684,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 examples: default: value: @@ -15710,7 +15970,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &103 + X-CommonMarker-Version: &105 example: 0.17.4 schema: type: string @@ -15765,7 +16025,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *103 + X-CommonMarker-Version: *105 content: text/html: schema: @@ -15794,7 +16054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &106 + - &108 name: account_id description: account_id parameter in: path @@ -15806,7 +16066,7 @@ paths: description: Response content: application/json: - schema: &105 + schema: &107 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15836,7 +16096,7 @@ paths: nullable: true id: type: integer - plan: &104 + plan: &106 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15925,7 +16185,7 @@ paths: nullable: true updated_at: type: string - plan: *104 + plan: *106 required: - url - id @@ -15933,7 +16193,7 @@ paths: - login - marketplace_purchase examples: - default: &107 + default: &109 value: url: https://api.github.com/orgs/github type: Organization @@ -16018,9 +16278,9 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: &108 + default: &110 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -16038,7 +16298,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '401': *25 x-github: @@ -16060,14 +16320,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &109 + - &111 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &110 + - &112 name: sort description: The property to sort the results by. in: query @@ -16097,9 +16357,9 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: &111 + default: &113 value: - url: https://api.github.com/orgs/github type: Organization @@ -16150,7 +16410,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '422': *15 '401': *25 @@ -16173,15 +16433,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *106 + - *108 responses: '200': description: Response content: application/json: - schema: *105 + schema: *107 examples: - default: *107 + default: *109 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -16213,11 +16473,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *108 + default: *110 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -16238,8 +16498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *109 - - *110 + - *111 + - *112 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16259,11 +16519,11 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: *111 + default: *113 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -16525,14 +16785,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &342 + - &344 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &343 + - &345 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16549,7 +16809,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -16594,7 +16854,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &346 + '301': &348 description: Moved permanently content: application/json: @@ -16616,7 +16876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &583 + - &585 name: all description: If `true`, show notifications marked as read. in: query @@ -16624,7 +16884,7 @@ paths: schema: type: boolean default: false - - &584 + - &586 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16633,8 +16893,8 @@ paths: schema: type: boolean default: false - - *93 - - &585 + - *95 + - &587 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: @@ -16659,18 +16919,18 @@ paths: application/json: schema: type: array - items: &113 + items: &115 title: Thread description: Thread type: object properties: id: type: string - repository: &159 + repository: &161 title: Minimal Repository description: Minimal Repository type: object - properties: &211 + properties: &213 id: type: integer format: int64 @@ -16954,7 +17214,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &297 + security_and_analysis: &299 nullable: true type: object properties: @@ -17074,7 +17334,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &212 + required: &214 - archive_url - assignees_url - blobs_url @@ -17162,7 +17422,7 @@ paths: - url - subscription_url examples: - default: &586 + default: &588 value: - id: '1' repository: @@ -17244,7 +17504,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -17328,7 +17588,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &114 + - &116 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 @@ -17342,7 +17602,7 @@ paths: description: Response content: application/json: - schema: *113 + schema: *115 examples: default: value: @@ -17444,7 +17704,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *114 + - *116 responses: '205': description: Reset Content @@ -17466,7 +17726,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *114 + - *116 responses: '204': description: No content @@ -17489,13 +17749,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *114 + - *116 responses: '200': description: Response content: application/json: - schema: &115 + schema: &117 title: Thread Subscription description: Thread Subscription type: object @@ -17532,7 +17792,7 @@ paths: - url - subscribed examples: - default: &116 + default: &118 value: subscribed: true ignored: false @@ -17563,7 +17823,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *114 + - *116 requestBody: required: false content: @@ -17584,9 +17844,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *117 examples: - default: *116 + default: *118 '304': *37 '403': *29 '401': *25 @@ -17609,7 +17869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *114 + - *116 responses: '204': description: Response @@ -17704,9 +17964,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: Link: example: ; rel="next" @@ -17733,13 +17993,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &118 + schema: &120 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17772,12 +18032,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *118 + schema: *120 examples: selected_actions: *42 responses: @@ -17806,13 +18066,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &119 + schema: &121 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17845,12 +18105,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *119 + schema: *121 examples: selected_actions: *44 responses: @@ -17880,7 +18140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *76 + - *78 - name: page description: The page number of the results to fetch. in: query @@ -18052,8 +18312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *76 - - &121 + - *78 + - &123 name: budget_id description: The ID corresponding to the budget. in: path @@ -18150,7 +18410,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18170,8 +18430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 requestBody: required: true content: @@ -18362,8 +18622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 responses: '200': description: Response when deleting a budget @@ -18390,7 +18650,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18410,8 +18670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *76 - - &122 + - *78 + - &124 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, @@ -18420,7 +18680,7 @@ paths: required: false schema: type: integer - - &124 + - &126 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 @@ -18429,7 +18689,7 @@ paths: required: false schema: type: integer - - &123 + - &125 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 @@ -18444,14 +18704,14 @@ paths: required: false schema: type: string - - &733 + - &735 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &125 + - &127 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18568,7 +18828,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18588,9 +18848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *76 - - *122 - - &734 + - *78 + - *124 + - &736 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 @@ -18599,7 +18859,7 @@ paths: required: false schema: type: integer - - *123 + - *125 responses: '200': description: Billing usage report response for an organization @@ -18675,7 +18935,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18698,19 +18958,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *76 - - *122 + - *78 - *124 - - *123 - - &735 + - *126 + - *125 + - &737 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *125 - - &736 + - *127 + - &738 name: sku description: The SKU to query for usage. in: query @@ -18821,7 +19081,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18847,13 +19107,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &126 + schema: &128 title: Organization Full description: Organization Full type: object @@ -19167,7 +19427,7 @@ paths: - updated_at - archived_at examples: - default-response: &127 + default-response: &129 value: login: github id: 1 @@ -19266,7 +19526,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *76 + - *78 requestBody: required: false content: @@ -19478,17 +19738,17 @@ paths: description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '422': description: Validation failed content: application/json: schema: oneOf: - - *128 - - *129 + - *130 + - *131 '409': *54 x-github: githubCloudOnly: false @@ -19512,7 +19772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *76 + - *78 responses: '202': *39 '404': *6 @@ -19538,7 +19798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -19564,7 +19824,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19585,7 +19845,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: - - *76 + - *78 - *17 - *19 responses: @@ -19603,7 +19863,7 @@ paths: type: integer repository_cache_usages: type: array - items: &353 + items: &355 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19638,7 +19898,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19658,7 +19918,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -19676,7 +19936,7 @@ paths: type: integer runners: type: array - items: &130 + items: &132 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19730,7 +19990,7 @@ paths: - display_name - source nullable: true - machine_size_details: &138 + machine_size_details: &140 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19826,7 +20086,7 @@ paths: - public_ip_enabled - platform examples: - default: &158 + default: &160 value: total_count: 2 runners: @@ -19868,7 +20128,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19886,7 +20146,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -19963,9 +20223,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: &139 + default: &141 value: id: 5 name: My hosted ubuntu runner @@ -20006,7 +20266,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -20022,7 +20282,7 @@ paths: type: integer images: type: array - items: &131 + items: &133 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20073,7 +20333,7 @@ paths: - latest_version - state examples: - default: &133 + default: &135 value: total_count: 2 image_versions: @@ -20104,8 +20364,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: - - *76 - - &132 + - *78 + - &134 name: image_definition_id description: Image definition ID of custom image in: path @@ -20117,7 +20377,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *133 examples: default: value: @@ -20147,8 +20407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *76 - - *132 + - *78 + - *134 responses: '204': description: Response @@ -20171,8 +20431,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: - - *132 - - *76 + - *134 + - *78 responses: '200': description: Response @@ -20188,7 +20448,7 @@ paths: type: integer image_versions: type: array - items: &134 + items: &136 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20221,7 +20481,7 @@ paths: - created_on - state_details examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20241,9 +20501,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: - - *76 - - *132 - - &135 + - *78 + - *134 + - &137 name: version description: Version of a custom image in: path @@ -20256,7 +20516,7 @@ paths: description: Response content: application/json: - schema: *134 + schema: *136 examples: default: value: @@ -20282,9 +20542,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: - - *76 - - *132 - - *135 + - *78 + - *134 + - *137 responses: '204': description: Response @@ -20305,7 +20565,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: - - *76 + - *78 responses: '200': description: Response @@ -20321,7 +20581,7 @@ paths: type: integer images: type: array - items: &136 + items: &138 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20357,7 +20617,7 @@ paths: - display_name - source examples: - default: &137 + default: &139 value: id: ubuntu-20.04 platform: linux-x64 @@ -20381,7 +20641,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: - - *76 + - *78 responses: '200': description: Response @@ -20397,9 +20657,9 @@ paths: type: integer images: type: array - items: *136 + items: *138 examples: - default: *137 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20416,7 +20676,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: - - *76 + - *78 responses: '200': description: Response @@ -20469,7 +20729,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: - - *76 + - *78 responses: '200': description: Response @@ -20485,7 +20745,7 @@ paths: type: integer machine_specs: type: array - items: *138 + items: *140 examples: default: value: @@ -20510,7 +20770,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: - - *76 + - *78 responses: '200': description: Response @@ -20554,8 +20814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *76 - - &140 + - *78 + - &142 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20567,11 +20827,11 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20589,8 +20849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 requestBody: required: true content: @@ -20656,9 +20916,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20674,16 +20934,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 responses: '202': description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20703,7 +20963,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: A JSON array of OIDC custom property inclusions @@ -20736,12 +20996,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *141 + schema: *143 examples: default: *46 responses: @@ -20775,7 +21035,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 - name: custom_property_name in: path required: true @@ -20808,7 +21068,7 @@ 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: - - *76 + - *78 responses: '200': description: A JSON serialized template for OIDC subject claim customization @@ -20828,7 +21088,7 @@ paths: required: - include_claim_keys examples: - default: &142 + default: &144 value: include_claim_keys: - repo @@ -20850,7 +21110,7 @@ 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: - - *76 + - *78 requestBody: required: true content: @@ -20867,13 +21127,13 @@ paths: items: type: string examples: - default: *142 + default: *144 responses: '201': description: Empty response content: application/json: - schema: &168 + schema: &170 title: Empty Object description: An object without any properties. type: object @@ -20903,7 +21163,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -20912,7 +21172,7 @@ paths: schema: type: object properties: - enabled_repositories: &143 + enabled_repositories: &145 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20925,7 +21185,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: &144 + allowed_actions: &146 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20933,12 +21193,12 @@ paths: - all - local_only - selected - selected_actions_url: &359 + selected_actions_url: &361 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: &145 + sha_pinning_required: &147 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20969,7 +21229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -20980,9 +21240,9 @@ paths: schema: type: object properties: - enabled_repositories: *143 - allowed_actions: *144 - sha_pinning_required: *145 + enabled_repositories: *145 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled_repositories examples: @@ -21010,13 +21270,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &363 + schema: &365 type: object properties: days: @@ -21053,12 +21313,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &364 + schema: &366 type: object properties: days: @@ -21095,13 +21355,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &146 + schema: &148 type: object properties: approval_policy: @@ -21115,7 +21375,7 @@ paths: required: - approval_policy examples: - default: &365 + default: &367 value: approval_policy: first_time_contributors '404': *6 @@ -21136,7 +21396,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21146,7 +21406,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -21168,13 +21428,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: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &366 + schema: &368 type: object required: - run_workflows_from_fork_pull_requests @@ -21200,7 +21460,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &147 + default: &149 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21223,12 +21483,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: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &367 + schema: &369 type: object required: - run_workflows_from_fork_pull_requests @@ -21251,7 +21511,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -21281,7 +21541,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: - - *76 + - *78 - *17 - *19 responses: @@ -21299,9 +21559,9 @@ paths: type: number repositories: type: array - items: *80 + items: *82 examples: - default: &151 + default: &153 value: total_count: 1 repositories: @@ -21441,7 +21701,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: - - *76 + - *78 responses: '204': description: Response @@ -21485,8 +21745,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: - - *76 - - &148 + - *78 + - &150 name: repository_id description: The unique identifier of the repository. in: path @@ -21514,8 +21774,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -21538,13 +21798,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &149 + schema: &151 type: object properties: github_owned_allowed: @@ -21566,7 +21826,7 @@ paths: items: type: string examples: - default: &150 + default: &152 value: github_owned_allowed: true verified_allowed: false @@ -21591,7 +21851,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21599,9 +21859,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21621,7 +21881,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -21669,7 +21929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -21716,7 +21976,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: - - *76 + - *78 - *17 - *19 responses: @@ -21731,9 +21991,9 @@ paths: type: integer repositories: type: array - items: *80 + items: *82 examples: - default: *151 + default: *153 '403': *29 '404': *6 x-github: @@ -21753,7 +22013,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: - - *76 + - *78 requestBody: required: true content: @@ -21801,8 +22061,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -21828,8 +22088,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -21857,23 +22117,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &368 + schema: &370 type: object properties: - default_workflow_permissions: &152 + default_workflow_permissions: &154 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &153 + can_approve_pull_request_reviews: &155 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21881,7 +22141,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &154 + default: &156 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21906,7 +22166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Success response @@ -21914,13 +22174,13 @@ paths: required: false content: application/json: - schema: &369 + schema: &371 type: object properties: - default_workflow_permissions: *152 - can_approve_pull_request_reviews: *153 + default_workflow_permissions: *154 + can_approve_pull_request_reviews: *155 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21940,7 +22200,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: - - *76 + - *78 - *17 - *19 - name: visible_to_repository @@ -21965,7 +22225,7 @@ paths: type: number runner_groups: type: array - items: &155 + items: &157 type: object properties: id: @@ -22081,7 +22341,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: - - *76 + - *78 requestBody: required: true content: @@ -22153,9 +22413,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: &157 + default: &159 value: id: 2 name: octo-runner-group @@ -22190,8 +22450,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: - - *76 - - &156 + - *78 + - &158 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22203,7 +22463,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: default: value: @@ -22239,8 +22499,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -22294,9 +22554,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: *157 + default: *159 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22315,8 +22575,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: - - *76 - - *156 + - *78 + - *158 responses: '204': description: Response @@ -22339,8 +22599,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -22358,11 +22618,11 @@ paths: type: number runners: type: array - items: *130 + items: *132 examples: - default: *158 + default: *160 headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22382,8 +22642,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: - - *76 - - *156 + - *78 + - *158 - *19 - *17 responses: @@ -22401,9 +22661,9 @@ paths: type: number repositories: type: array - items: *159 + items: *161 examples: - default: &196 + default: &198 value: total_count: 1 repositories: @@ -22655,8 +22915,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -22700,9 +22960,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -22724,9 +22984,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -22749,8 +23009,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -22768,7 +23028,7 @@ paths: type: number runners: type: array - items: &161 + items: &163 title: Self hosted runners description: A self hosted runner type: object @@ -22797,7 +23057,7 @@ paths: type: boolean labels: type: array - items: &164 + items: &166 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22827,7 +23087,7 @@ paths: - busy - labels examples: - default: &162 + default: &164 value: total_count: 2 runners: @@ -22867,7 +23127,7 @@ paths: name: no-gpu type: custom headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22886,8 +23146,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -22931,9 +23191,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: - - *76 - - *156 - - &160 + - *78 + - *158 + - &162 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22961,9 +23221,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: - - *76 - - *156 - - *160 + - *78 + - *158 + - *162 responses: '204': description: Response @@ -22993,7 +23253,7 @@ paths: in: query schema: type: string - - *76 + - *78 - *17 - *19 responses: @@ -23011,11 +23271,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23037,7 +23297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -23045,7 +23305,7 @@ paths: application/json: schema: type: array - items: &370 + items: &372 title: Runner Application description: Runner Application type: object @@ -23070,7 +23330,7 @@ paths: - download_url - filename examples: - default: &371 + default: &373 value: - os: osx architecture: x64 @@ -23113,7 +23373,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: - - *76 + - *78 requestBody: required: true content: @@ -23156,7 +23416,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &372 + '201': &374 description: Response content: application/json: @@ -23166,7 +23426,7 @@ paths: - runner - encoded_jit_config properties: - runner: *161 + runner: *163 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23223,13 +23483,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: &163 + schema: &165 title: Authentication Token description: Authentication Token type: object @@ -23251,7 +23511,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *80 + items: *82 single_file: type: string example: config.yaml @@ -23267,7 +23527,7 @@ paths: - token - expires_at examples: - default: &373 + default: &375 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23298,15 +23558,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &374 + default: &376 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23331,16 +23591,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: - - *76 - - *160 + - *78 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: &375 + default: &377 value: id: 23 name: MBP @@ -23381,8 +23641,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: - - *76 - - *160 + - *78 + - *162 responses: '204': description: Response @@ -23408,10 +23668,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &165 + '200': &167 description: Response content: application/json: @@ -23425,7 +23685,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -23464,8 +23724,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -23489,7 +23749,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23513,8 +23773,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -23539,7 +23799,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23563,10 +23823,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &376 + '200': &378 description: Response content: application/json: @@ -23580,7 +23840,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -23621,9 +23881,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: - - *76 - - *160 - - &377 + - *78 + - *162 + - &379 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23631,7 +23891,7 @@ paths: schema: type: string responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -23656,7 +23916,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -23674,7 +23934,7 @@ paths: type: integer secrets: type: array - items: &166 + items: &168 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23724,7 +23984,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23747,13 +24007,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &389 + schema: &391 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23782,7 +24042,7 @@ paths: - key_id - key examples: - default: &390 + default: &392 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23807,8 +24067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *76 - - &167 + - *78 + - &169 name: secret_name description: The name of the secret. in: path @@ -23820,7 +24080,7 @@ paths: description: Response content: application/json: - schema: *166 + schema: *168 examples: default: value: @@ -23850,8 +24110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -23908,7 +24168,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -23934,8 +24194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -23961,8 +24221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -23980,9 +24240,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: &171 + default: &173 value: total_count: 1 repositories: @@ -24074,8 +24334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -24127,8 +24387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24161,8 +24421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24194,8 +24454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *76 - - &358 + - *78 + - &360 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)." @@ -24219,7 +24479,7 @@ paths: type: integer variables: type: array - items: &169 + items: &171 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24283,7 +24543,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24304,7 +24564,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *76 + - *78 requestBody: required: true content: @@ -24352,7 +24612,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -24377,8 +24637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *76 - - &170 + - *78 + - &172 name: name description: The name of the variable. in: path @@ -24390,7 +24650,7 @@ paths: description: Response content: application/json: - schema: *169 + schema: *171 examples: default: value: @@ -24420,8 +24680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -24483,8 +24743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 responses: '204': description: Response @@ -24510,8 +24770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - *19 - *17 responses: @@ -24529,9 +24789,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24557,8 +24817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -24607,8 +24867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -24642,8 +24902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -24684,7 +24944,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -24807,7 +25067,7 @@ paths: type: integer deployment_records: type: array - items: &172 + items: &174 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24853,7 +25113,7 @@ paths: required: - total_count examples: - default: &173 + default: &175 value: total_count: 1 deployment_records: @@ -24890,7 +25150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *76 + - *78 - name: cluster in: path description: The cluster name. @@ -25033,11 +25293,11 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 required: - total_count examples: - default: *173 + default: *175 '403': description: Forbidden content: @@ -25084,7 +25344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -25247,7 +25507,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *76 + - *78 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25272,9 +25532,9 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25294,7 +25554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25379,7 +25639,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 requestBody: required: true content: @@ -25403,12 +25663,12 @@ paths: required: - subject_digests examples: - default: &715 + default: &717 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &716 + withPredicateType: &718 value: subject_digests: - sha256:abc123 @@ -25452,7 +25712,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &717 + default: &719 value: attestations_subject_digests: - sha256:abc: @@ -25561,7 +25821,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *76 + - *78 requestBody: required: true content: @@ -25626,7 +25886,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *76 + - *78 - name: subject_digest description: Subject Digest in: path @@ -25661,7 +25921,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25709,7 +25969,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *76 + - *78 - name: attestation_id description: Attestation ID in: path @@ -25747,7 +26007,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25785,7 +26045,7 @@ paths: initiator: type: string examples: - default: &403 + default: &405 value: attestations: - bundle: @@ -25892,7 +26152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -25904,7 +26164,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25923,8 +26183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: If the user is blocked @@ -25949,8 +26209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -25970,8 +26230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -25996,7 +26256,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *76 + - *78 - *19 - *17 - *62 @@ -26004,7 +26264,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &174 + schema: &176 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26030,7 +26290,7 @@ paths: application/json: schema: type: array - items: &175 + items: &177 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26061,7 +26321,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &195 + items: &197 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26136,7 +26396,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &257 + properties: &259 id: description: Unique identifier of the team type: integer @@ -26208,7 +26468,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &258 + required: &260 - id - node_id - url @@ -26251,7 +26511,7 @@ paths: type: string format: date-time nullable: true - state: *174 + state: *176 contact_link: description: The contact link of the campaign. type: string @@ -26346,9 +26606,9 @@ paths: closed_at: state: open headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26372,7 +26632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -26471,9 +26731,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: &176 + default: &178 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26522,7 +26782,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26544,7 +26804,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -26556,16 +26816,16 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26586,7 +26846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -26635,7 +26895,7 @@ paths: type: string format: uri nullable: true - state: *174 + state: *176 examples: default: value: @@ -26645,9 +26905,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '400': description: Bad Request content: @@ -26659,7 +26919,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26680,7 +26940,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -26691,7 +26951,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26713,18 +26973,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *76 - - &428 + - *78 + - &430 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: &184 + schema: &186 type: string description: The name of the tool used to generate the code scanning analysis. - - &429 + - &431 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 @@ -26732,7 +26992,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &185 + schema: &187 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -26747,7 +27007,7 @@ paths: be returned. in: query required: false - schema: &431 + schema: &433 type: string description: State of a code scanning alert. enum: @@ -26770,7 +27030,7 @@ paths: be returned. in: query required: false - schema: &432 + schema: &434 type: string description: Severity of a code scanning alert. enum: @@ -26799,18 +27059,18 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: &433 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: &435 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &186 + state: &188 type: string description: State of a code scanning alert. nullable: true @@ -26818,7 +27078,7 @@ paths: - open - dismissed - fixed - fixed_at: *182 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -26826,8 +27086,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: &434 + dismissed_at: *185 + dismissed_reason: &436 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26836,13 +27096,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &435 + dismissed_comment: &437 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &436 + rule: &438 type: object properties: id: @@ -26895,42 +27155,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &437 + tool: &439 type: object properties: - name: *184 + name: *186 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *185 - most_recent_instance: &438 + guid: *187 + most_recent_instance: &440 type: object properties: - ref: &430 + ref: &432 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &448 + analysis_key: &450 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: &449 + environment: &451 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: &450 + category: &452 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: *186 + state: *188 commit_sha: type: string message: @@ -26944,7 +27204,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &451 + location: &453 type: object description: Describe a region within a file for the alert. properties: @@ -26965,7 +27225,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: &452 + items: &454 type: string description: A classification of the file. For example to identify it as generated. @@ -27230,9 +27490,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: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27254,7 +27514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *76 + - *78 - name: target_type in: query description: The target type of the code security configuration @@ -27360,7 +27620,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *76 + - *78 requestBody: required: true content: @@ -27604,7 +27864,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27626,15 +27886,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *188 + schema: *190 examples: - default: *189 + default: *191 '304': *37 '403': *29 '404': *6 @@ -27660,7 +27920,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -27712,7 +27972,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '200': @@ -27721,7 +27981,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 '304': *37 '403': *29 '404': *6 @@ -27745,7 +28005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28025,7 +28285,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '204': *61 @@ -28056,7 +28316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28120,7 +28380,7 @@ 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: - - *76 + - *78 - *51 requestBody: required: true @@ -28166,7 +28426,7 @@ paths: default: value: default_for_new_repos: all - configuration: *187 + configuration: *189 '403': *29 '404': *6 x-github: @@ -28190,7 +28450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *76 + - *78 - *51 - name: per_page description: The number of results per page (max 100). For more information, @@ -28219,13 +28479,13 @@ paths: application/json: schema: type: array - items: *190 + items: *192 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *191 + repository: *193 '403': *29 '404': *6 x-github: @@ -28249,7 +28509,7 @@ paths: parameters: - *17 - *19 - - *76 + - *78 responses: '200': description: Response @@ -28265,7 +28525,7 @@ paths: type: integer codespaces: type: array - items: &247 + items: &249 type: object title: Codespace description: A codespace. @@ -28290,12 +28550,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *159 + repository: *161 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &464 + properties: &466 name: type: string description: The name of the machine. @@ -28337,7 +28597,7 @@ paths: - ready - in_progress nullable: true - required: &465 + required: &467 - name - display_name - operating_system @@ -28542,7 +28802,7 @@ paths: - pulls_url - recent_folders examples: - default: &248 + default: &250 value: total_count: 3 codespaces: @@ -28974,7 +29234,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29041,7 +29301,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29096,7 +29356,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *76 + - *78 requestBody: required: true content: @@ -29148,7 +29408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -29166,7 +29426,7 @@ paths: type: integer secrets: type: array - items: &192 + items: &194 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29205,7 +29465,7 @@ paths: - updated_at - visibility examples: - default: &466 + default: &468 value: total_count: 2 secrets: @@ -29218,7 +29478,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29237,13 +29497,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &467 + schema: &469 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29272,7 +29532,7 @@ paths: - key_id - key examples: - default: &468 + default: &470 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29295,23 +29555,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: &470 + default: &472 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29331,8 +29591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -29387,7 +29647,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -29413,8 +29673,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -29439,8 +29699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -29458,9 +29718,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '404': *6 x-github: githubCloudOnly: false @@ -29482,8 +29742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -29533,8 +29793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -29567,8 +29827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -29607,7 +29867,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: - - *76 + - *78 responses: '200': description: OK @@ -29748,7 +30008,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: - - *76 + - *78 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29771,7 +30031,7 @@ paths: currently being billed. seats: type: array - items: &250 + items: &252 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29788,15 +30048,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *193 - required: *194 + properties: *195 + required: *196 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *195 - - *69 + - *197 + - *71 nullable: true pending_cancellation_date: type: string @@ -29920,7 +30180,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '500': *55 '401': *25 '403': *29 @@ -29954,7 +30214,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: - - *76 + - *78 requestBody: content: application/json: @@ -30032,7 +30292,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: - - *76 + - *78 requestBody: content: application/json: @@ -30112,7 +30372,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: - - *76 + - *78 requestBody: content: application/json: @@ -30189,7 +30449,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: - - *76 + - *78 requestBody: content: application/json: @@ -30267,7 +30527,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#get-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -30332,7 +30592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30387,7 +30647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#list-repositories-enabled-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -30402,12 +30662,12 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 required: - total_count - repositories examples: - default: *196 + default: *198 '500': *55 '401': *25 '403': *29 @@ -30436,7 +30696,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-selected-repositories-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30492,8 +30752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -30526,8 +30786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -30566,7 +30826,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: - - *76 + - *78 responses: '200': description: OK @@ -30619,7 +30879,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: - - *76 + - *78 requestBody: description: The content exclusion rules to set required: true @@ -30710,7 +30970,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *76 + - *78 - 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`). @@ -30742,7 +31002,7 @@ paths: application/json: schema: type: array - items: &335 + items: &337 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31049,7 +31309,7 @@ paths: - date additionalProperties: true examples: - default: &336 + default: &338 value: - date: '2024-06-24' total_active_users: 24 @@ -31151,7 +31411,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &337 + '422': &339 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31182,7 +31442,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31221,7 +31481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31258,7 +31518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31297,7 +31557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31330,13 +31590,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *76 - - *197 - - *198 + - *78 - *199 - *200 - *201 - *202 + - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31366,7 +31626,7 @@ paths: enum: - patch - deployment - - *203 + - *205 - name: runtime_risk in: query description: |- @@ -31375,8 +31635,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *204 - - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -31388,9 +31648,9 @@ paths: application/json: schema: type: array - items: *206 + items: *208 examples: - default: *207 + default: *209 '304': *37 '400': *14 '403': *29 @@ -31416,7 +31676,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: - - *76 + - *78 - name: page in: query description: The page number of results to fetch. @@ -31439,104 +31699,9 @@ paths: description: Response content: application/json: - schema: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able - to access in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot - updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - title: Simple Repository - description: A GitHub repository. - type: object - properties: *208 - required: *209 - nullable: true - additionalProperties: false + schema: *210 examples: - default: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + default: *211 '403': *29 '404': *6 x-github: @@ -31567,7 +31732,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -31633,7 +31798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *76 + - *78 requestBody: required: true content: @@ -31681,7 +31846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -31699,7 +31864,7 @@ paths: type: integer secrets: type: array - items: &210 + items: &212 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31749,7 +31914,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31770,13 +31935,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &501 + schema: &503 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -31793,7 +31958,7 @@ paths: - key_id - key examples: - default: &502 + default: &504 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31816,14 +31981,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *210 + schema: *212 examples: default: value: @@ -31851,8 +32016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -31907,7 +32072,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -31931,8 +32096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -31956,8 +32121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -31975,9 +32140,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31998,8 +32163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -32049,8 +32214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32081,8 +32246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32112,7 +32277,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: - - *76 + - *78 responses: '200': description: Response @@ -32120,7 +32285,7 @@ paths: application/json: schema: type: array - items: &260 + items: &262 title: Package description: A software package type: object @@ -32170,8 +32335,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *211 - required: *212 + properties: *213 + required: *214 nullable: true created_at: type: string @@ -32190,7 +32355,7 @@ paths: - created_at - updated_at examples: - default: &261 + default: &263 value: - id: 197 name: hello_docker @@ -32268,7 +32433,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32278,7 +32443,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -32350,7 +32515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32360,7 +32525,7 @@ paths: application/json: schema: type: array - items: &236 + items: &238 title: Organization Invitation description: Organization Invitation type: object @@ -32407,7 +32572,7 @@ paths: - invitation_teams_url - node_id examples: - default: &237 + default: &239 value: - id: 1 login: monalisa @@ -32440,7 +32605,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -32464,7 +32629,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32474,7 +32639,7 @@ paths: application/json: schema: type: array - items: &213 + items: &215 title: Org Hook description: Org Hook type: object @@ -32562,7 +32727,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -32585,7 +32750,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *76 + - *78 requestBody: required: true content: @@ -32645,9 +32810,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: - default: &214 + default: &216 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32694,8 +32859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *76 - - &215 + - *78 + - &217 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. @@ -32708,9 +32873,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: - default: *214 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -32737,8 +32902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 requestBody: required: false content: @@ -32783,7 +32948,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *215 examples: default: value: @@ -32824,8 +32989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 responses: '204': description: Response @@ -32852,8 +33017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *76 - - *215 + - *78 + - *217 responses: '200': description: Response @@ -32883,8 +33048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *76 - - *215 + - *78 + - *217 requestBody: required: false content: @@ -32934,11 +33099,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *76 - - *215 - - *17 - - *216 + - *78 - *217 + - *17 + - *218 + - *219 responses: '200': description: Response @@ -32946,9 +33111,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *219 + default: *221 '400': *14 '422': *15 x-github: @@ -32973,17 +33138,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: - default: *221 + default: *223 '400': *14 '422': *15 x-github: @@ -33008,8 +33173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 - *16 responses: '202': *39 @@ -33038,8 +33203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *76 - - *215 + - *78 + - *217 responses: '204': description: Response @@ -33061,8 +33226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *76 - - &226 + - *78 + - &228 name: actor_type in: path description: The type of the actor @@ -33075,14 +33240,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &227 + - &229 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &222 + - &224 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`.' @@ -33090,7 +33255,7 @@ paths: required: true schema: type: string - - &223 + - &225 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) @@ -33183,13 +33348,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *76 - - *222 - - *223 + - *78 + - *224 + - *225 - *19 - *17 - *62 - - &232 + - &234 name: sort description: The property to sort the results by. in: query @@ -33266,15 +33431,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *76 - - *222 - - *223 + - *78 + - *224 + - *225 responses: '200': description: Response content: application/json: - schema: &224 + schema: &226 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33290,7 +33455,7 @@ paths: type: integer format: int64 examples: - default: &225 + default: &227 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33310,24 +33475,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *76 - - &228 + - *78 + - &230 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *222 - - *223 + - *224 + - *225 responses: '200': description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *225 + default: *227 x-github: enabledForGitHubApps: true category: orgs @@ -33345,19 +33510,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *76 - - *222 - - *223 - - *226 - - *227 + - *78 + - *224 + - *225 + - *228 + - *229 responses: '200': description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *225 + default: *227 x-github: enabledForGitHubApps: true category: orgs @@ -33374,10 +33539,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *76 - - *222 - - *223 - - &229 + - *78 + - *224 + - *225 + - &231 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33390,7 +33555,7 @@ paths: description: Response content: application/json: - schema: &230 + schema: &232 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33406,7 +33571,7 @@ paths: type: integer format: int64 examples: - default: &231 + default: &233 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33442,19 +33607,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *76 - - *228 - - *222 - - *223 - - *229 + - *78 + - *230 + - *224 + - *225 + - *231 responses: '200': description: Response content: application/json: - schema: *230 + schema: *232 examples: - default: *231 + default: *233 x-github: enabledForGitHubApps: true category: orgs @@ -33471,20 +33636,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *76 - - *226 - - *227 - - *222 - - *223 + - *78 + - *228 - *229 + - *224 + - *225 + - *231 responses: '200': description: Response content: application/json: - schema: *230 + schema: *232 examples: - default: *231 + default: *233 x-github: enabledForGitHubApps: true category: orgs @@ -33501,14 +33666,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *76 - - *228 - - *222 - - *223 + - *78 + - *230 + - *224 + - *225 - *19 - *17 - *62 - - *232 + - *234 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33581,7 +33746,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *76 + - *78 responses: '200': description: Response @@ -33589,7 +33754,7 @@ paths: application/json: schema: *22 examples: - default: &541 + default: &543 value: id: 1 account: @@ -33658,7 +33823,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -33728,7 +33893,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33747,7 +33912,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -33755,12 +33920,12 @@ paths: application/json: schema: anyOf: - - &234 + - &236 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &233 + limit: &235 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33785,7 +33950,7 @@ paths: properties: {} additionalProperties: false examples: - default: &235 + default: &237 value: limit: collaborators_only origin: organization @@ -33809,18 +33974,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &542 + schema: &544 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *233 + limit: *235 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33844,9 +34009,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *235 + default: *237 '422': *15 x-github: githubCloudOnly: false @@ -33864,7 +34029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -33888,7 +34053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *76 + - *78 - *17 - *19 - name: role @@ -33922,11 +34087,11 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -33947,7 +34112,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *76 + - *78 requestBody: required: false content: @@ -34001,7 +34166,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *238 examples: default: value: @@ -34055,8 +34220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *76 - - &238 + - *78 + - &240 name: invitation_id description: The unique identifier of the invitation. in: path @@ -34086,8 +34251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *76 - - *238 + - *78 + - *240 - *17 - *19 responses: @@ -34097,9 +34262,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34115,7 +34280,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34134,7 +34299,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34142,7 +34307,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -34285,7 +34450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -34375,9 +34540,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: &240 + default: &242 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -34432,8 +34597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *76 - - &241 + - *78 + - &243 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -34541,9 +34706,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 '404': *6 '422': *7 x-github: @@ -34567,8 +34732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *76 - - *241 + - *78 + - *243 responses: '204': *61 '404': *6 @@ -34590,7 +34755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34598,7 +34763,7 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: default: value: @@ -34636,7 +34801,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -34683,9 +34848,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: &243 + default: &245 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34717,8 +34882,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *76 - - &244 + - *78 + - &246 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34771,9 +34936,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *243 + default: *245 '404': *6 '422': *7 x-github: @@ -34797,8 +34962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *76 - - *244 + - *78 + - *246 responses: '204': description: Response @@ -34831,7 +34996,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *76 + - *78 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -34861,7 +35026,7 @@ paths: - closed - all default: open - - *245 + - *247 - name: type description: Can be the name of an issue type. in: query @@ -34880,7 +35045,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -34890,11 +35055,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *246 + default: *248 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34914,7 +35079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *76 + - *78 - 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) @@ -34952,9 +35117,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -34972,8 +35137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if requester is an organization member and user is @@ -35007,8 +35172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -35035,8 +35200,8 @@ paths: parameters: - *17 - *19 - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response @@ -35052,9 +35217,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: - default: *248 + default: *250 '304': *37 '500': *55 '401': *25 @@ -35079,9 +35244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *76 - - *72 - - &249 + - *78 + - *74 + - &251 name: codespace_name in: path required: true @@ -35114,17 +35279,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *76 - - *72 - - *249 + - *78 + - *74 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: &463 + default: &465 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -35297,14 +35462,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: - - *76 - - *72 + - *78 + - *74 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *250 + schema: *252 examples: default: value: @@ -35373,14 +35538,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response content: application/json: - schema: &251 + schema: &253 title: Org Membership description: Org Membership type: object @@ -35424,7 +35589,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *74 + organization: *76 user: title: Simple User description: A GitHub user. @@ -35447,7 +35612,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &252 + response-if-user-has-an-active-admin-membership-with-organization: &254 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -35519,8 +35684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -35548,9 +35713,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - response-if-user-already-had-membership-with-organization: *252 + response-if-user-already-had-membership-with-organization: *254 '422': *15 '403': *29 '451': *15 @@ -35575,8 +35740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -35601,7 +35766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *76 + - *78 - *17 - *19 - name: exclude @@ -35622,7 +35787,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Migration description: A migration. type: object @@ -35859,7 +36024,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35875,7 +36040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *76 + - *78 requestBody: required: true content: @@ -35951,7 +36116,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -36129,8 +36294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *76 - - &254 + - *78 + - &256 name: migration_id description: The unique identifier of the migration. in: path @@ -36157,7 +36322,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -36326,8 +36491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *76 - - *254 + - *78 + - *256 responses: '302': description: Response @@ -36348,8 +36513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *76 - - *254 + - *78 + - *256 responses: '204': description: Response @@ -36372,9 +36537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *76 - - *254 - - &697 + - *78 + - *256 + - &699 name: repo_name description: repo_name parameter in: path @@ -36401,8 +36566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *76 - - *254 + - *78 + - *256 - *17 - *19 responses: @@ -36414,7 +36579,7 @@ paths: type: array items: *67 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -36440,7 +36605,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of organization roles @@ -36456,7 +36621,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &256 + items: &258 title: Organization Role description: Organization roles type: object @@ -36603,8 +36768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -36629,9 +36794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *76 - *78 - - &255 + - *80 + - &257 name: role_id description: The unique identifier of the role. in: path @@ -36666,9 +36831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *76 - *78 - - *255 + - *80 + - *257 responses: '204': description: Response @@ -36693,8 +36858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -36719,9 +36884,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *76 - - *72 - - *255 + - *78 + - *74 + - *257 responses: '204': description: Response @@ -36751,9 +36916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *76 - - *72 - - *255 + - *78 + - *74 + - *257 responses: '204': description: Response @@ -36781,14 +36946,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *76 - - *255 + - *78 + - *257 responses: '200': description: Response content: application/json: - schema: *256 + schema: *258 examples: default: value: @@ -36838,8 +37003,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: - - *76 - - *255 + - *78 + - *257 - *17 - *19 responses: @@ -36917,8 +37082,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 nullable: true type: description: The ownership type of the team @@ -36950,9 +37115,9 @@ paths: - type - parent examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -36979,8 +37144,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: - - *76 - - *255 + - *78 + - *257 - *17 - *19 responses: @@ -37008,13 +37173,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &331 + items: &333 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 name: nullable: true type: string @@ -37109,9 +37274,9 @@ paths: - type - url examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -37133,7 +37298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *76 + - *78 - 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) @@ -37160,9 +37325,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37185,8 +37350,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -37243,8 +37408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -37301,8 +37466,8 @@ paths: - docker - nuget - container - - *76 - - &698 + - *78 + - &700 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37338,12 +37503,12 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *261 + default: *263 '403': *29 '401': *25 - '400': &700 + '400': &702 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37365,7 +37530,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &262 + - &264 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 @@ -37383,20 +37548,20 @@ paths: - docker - nuget - container - - &263 + - &265 name: package_name description: The name of the package. in: path required: true schema: type: string - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -37448,9 +37613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 responses: '204': description: Response @@ -37482,9 +37647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 - name: token description: package token schema: @@ -37516,9 +37681,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: - - *262 - - *263 - - *76 + - *264 + - *265 + - *78 - *19 - *17 - name: state @@ -37538,7 +37703,7 @@ paths: application/json: schema: type: array - items: &264 + items: &266 title: Package Version description: A version of a software package type: object @@ -37663,10 +37828,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 - - &265 + - *264 + - *265 + - *78 + - &267 name: package_version_id description: Unique identifier of the package version. in: path @@ -37678,7 +37843,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -37714,10 +37879,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 - *265 + - *78 + - *267 responses: '204': description: Response @@ -37749,10 +37914,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *262 - - *263 - - *76 + - *264 - *265 + - *78 + - *267 responses: '204': description: Response @@ -37779,10 +37944,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: - - *76 + - *78 - *17 - *19 - - &266 + - &268 name: sort description: The property by which to sort the results. in: query @@ -37793,7 +37958,7 @@ paths: - created_at default: created_at - *62 - - &267 + - &269 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37804,7 +37969,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &268 + - &270 name: repository description: The name of the repository to use to filter the results. in: query @@ -37812,7 +37977,7 @@ paths: schema: type: string example: Hello-World - - &269 + - &271 name: permission description: The permission to use to filter the results. in: query @@ -37820,7 +37985,7 @@ paths: schema: type: string example: issues_read - - &270 + - &272 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) @@ -37830,7 +37995,7 @@ paths: schema: type: string format: date-time - - &271 + - &273 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) @@ -37840,7 +38005,7 @@ paths: schema: type: string format: date-time - - &272 + - &274 name: token_id description: The ID of the token in: query @@ -37984,7 +38149,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38004,7 +38169,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: - - *76 + - *78 requestBody: required: true content: @@ -38070,7 +38235,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38131,7 +38296,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38151,9 +38316,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: &273 + default: &275 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38266,7 +38431,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38287,17 +38452,17 @@ 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: - - *76 + - *78 - *17 - *19 - - *266 - - *62 - - *267 - *268 + - *62 - *269 - *270 - *271 - *272 + - *273 + - *274 responses: '500': *55 '422': *15 @@ -38426,7 +38591,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38446,7 +38611,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: - - *76 + - *78 requestBody: required: true content: @@ -38506,7 +38671,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: - - *76 + - *78 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -38558,7 +38723,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: - - *76 + - *78 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -38577,11 +38742,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38603,7 +38768,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38621,7 +38786,7 @@ paths: type: integer configurations: type: array - items: &274 + items: &276 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38750,7 +38915,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *68 + Link: *70 '400': *14 '404': *6 x-github: @@ -38773,7 +38938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -39092,7 +39257,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &275 + org-private-registry-with-selected-visibility: &277 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -39133,7 +39298,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: - - *76 + - *78 responses: '200': description: Response @@ -39159,7 +39324,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -39181,16 +39346,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *274 + schema: *276 examples: - default: *275 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -39212,8 +39377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -39389,8 +39554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -39413,7 +39578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *76 + - *78 - name: q description: Limit results to projects of the specified type. in: query @@ -39430,7 +39595,7 @@ paths: application/json: schema: type: array - items: &276 + items: &278 title: Projects v2 Project description: A projects v2 project type: object @@ -39500,7 +39665,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &789 + properties: &791 id: type: number description: The unique identifier of the status update. @@ -39548,7 +39713,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &790 + required: &792 - id - node_id - created_at @@ -39573,7 +39738,7 @@ paths: - deleted_at - deleted_by examples: - default: &277 + default: &279 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -39656,7 +39821,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -39676,24 +39841,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &278 + - &280 name: project_number description: The project's number. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *276 + schema: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -39713,8 +39878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -39748,7 +39913,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &286 title: Projects v2 Item description: An item belonging to a project type: object @@ -39761,8 +39926,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *86 - - &480 + - *88 + - &482 title: Pull Request Simple description: Pull Request Simple type: object @@ -39868,8 +40033,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true active_lock_reason: type: string @@ -39901,7 +40066,7 @@ paths: items: *4 requested_teams: type: array - items: *195 + items: *197 head: type: object properties: @@ -39909,7 +40074,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -39932,7 +40097,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -39951,7 +40116,7 @@ paths: _links: type: object properties: - comments: &281 + comments: &283 title: Link description: Hypermedia Link type: object @@ -39960,13 +40125,13 @@ paths: type: string required: - href - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + commits: *283 + statuses: *283 + html: *283 + issue: *283 + review_comments: *283 + review_comment: *283 + self: *283 required: - comments - commits @@ -39976,8 +40141,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: &593 + author_association: *85 + auto_merge: &595 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40077,7 +40242,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &283 + content_type: &285 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -40117,7 +40282,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &285 + draft_issue: &287 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -40191,8 +40356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *278 - - *76 + - *280 + - *78 - *17 - *47 - *48 @@ -40203,7 +40368,7 @@ paths: application/json: schema: type: array - items: &282 + items: &284 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -40353,7 +40518,7 @@ paths: - updated_at - project_url examples: - default: &720 + default: &722 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40464,7 +40629,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40483,8 +40648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *278 - - *76 + - *280 + - *78 requestBody: required: true content: @@ -40530,7 +40695,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &721 + items: &723 type: object properties: name: @@ -40567,7 +40732,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &722 + iteration_configuration: &724 type: object description: The configuration for iteration fields. properties: @@ -40617,7 +40782,7 @@ paths: value: name: Due date data_type: date - single_select_field: &723 + single_select_field: &725 summary: Create a single select field value: name: Priority @@ -40644,7 +40809,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &724 + iteration_field: &726 summary: Create an iteration field value: name: Sprint @@ -40668,9 +40833,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *282 + schema: *284 examples: - text_field: &725 + text_field: &727 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -40679,7 +40844,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: &726 + number_field: &728 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -40688,7 +40853,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: &727 + date_field: &729 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -40697,7 +40862,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: &728 + single_select_field: &730 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40731,7 +40896,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &729 + iteration_field: &731 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40776,23 +40941,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *278 - - &730 + - *280 + - &732 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: &731 + default: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40827,7 +40992,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40848,8 +41013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *278 - - *76 + - *280 + - *78 - 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. @@ -40881,7 +41046,7 @@ paths: application/json: schema: type: array - items: &286 + items: &288 title: Projects v2 Item description: An item belonging to a project type: object @@ -40897,7 +41062,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: *283 + content_type: *285 content: type: object additionalProperties: true @@ -40940,7 +41105,7 @@ paths: - updated_at - archived_at examples: - default: &287 + default: &289 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -41617,7 +41782,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41637,8 +41802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -41708,22 +41873,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *287 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *287 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *287 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *287 '304': *37 '403': *29 '401': *25 @@ -41743,9 +41908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *278 - - *76 - - &288 + - *280 + - *78 + - &290 name: item_id description: The unique identifier of the project item. in: path @@ -41771,11 +41936,11 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41794,9 +41959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *278 - - *76 - - *288 + - *280 + - *78 + - *290 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41866,13 +42031,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *289 + number_field: *289 + date_field: *289 + single_select_field: *289 + iteration_field: *289 '401': *25 '403': *29 '404': *6 @@ -41892,9 +42057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *278 - - *76 - - *288 + - *280 + - *78 + - *290 responses: '204': description: Response @@ -41917,8 +42082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *76 - - *278 + - *78 + - *280 requestBody: required: true content: @@ -41989,7 +42154,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &712 + schema: &714 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42087,7 +42252,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &289 + value: &291 value: id: 1 number: 1 @@ -42133,10 +42298,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *289 + value: *291 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *291 '304': *37 '403': *29 '401': *25 @@ -42164,9 +42329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *278 - - *76 - - &732 + - *280 + - *78 + - &734 name: view_number description: The number that identifies the project view. in: path @@ -42198,11 +42363,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -42225,7 +42390,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -42233,7 +42398,7 @@ paths: application/json: schema: type: array - items: &290 + items: &292 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -42301,7 +42466,7 @@ paths: - property_name - value_type examples: - default: &291 + default: &293 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42350,7 +42515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -42361,7 +42526,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *290 + items: *292 minItems: 1 maxItems: 100 required: @@ -42391,9 +42556,9 @@ paths: application/json: schema: type: array - items: *290 + items: *292 examples: - default: *291 + default: *293 '403': *29 '404': *6 x-github: @@ -42414,8 +42579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *76 - - &292 + - *78 + - &294 name: custom_property_name description: The custom property name in: path @@ -42427,9 +42592,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: &293 + default: &295 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42463,8 +42628,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: - - *76 - - *292 + - *78 + - *294 requestBody: required: true content: @@ -42535,9 +42700,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *292 examples: - default: *293 + default: *295 '403': *29 '404': *6 x-github: @@ -42560,8 +42725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *76 - - *292 + - *78 + - *294 responses: '204': *61 '403': *29 @@ -42584,7 +42749,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 - *17 - *19 - name: repository_query @@ -42622,7 +42787,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &294 + items: &296 title: Custom Property Value description: Custom property name and associated value type: object @@ -42661,7 +42826,7 @@ paths: - property_name: team value: octocat headers: - Link: *68 + Link: *70 '403': *29 '404': *6 x-github: @@ -42689,7 +42854,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: - - *76 + - *78 requestBody: required: true content: @@ -42709,7 +42874,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *294 + items: *296 required: - repository_names - properties @@ -42750,7 +42915,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *76 + - *78 - *17 - *19 responses: @@ -42762,9 +42927,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42781,8 +42946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if user is a public member @@ -42806,8 +42971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -42828,8 +42993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -42853,7 +43018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *76 + - *78 - name: type description: Specifies the types of repositories you want returned. in: query @@ -42899,11 +43064,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42922,7 +43087,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *76 + - *78 requestBody: required: true content: @@ -43103,7 +43268,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &347 title: Full Repository description: Full Repository type: object @@ -43388,8 +43553,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *295 - required: *296 + properties: *297 + required: *298 nullable: true temp_clone_token: type: string @@ -43473,8 +43638,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -43483,8 +43648,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *80 - source: *80 + parent: *82 + source: *82 forks: type: integer master_branch: @@ -43501,7 +43666,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &485 + properties: &487 url: type: string format: uri @@ -43517,12 +43682,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &486 + required: &488 - url - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *299 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -43606,7 +43771,7 @@ paths: - network_count - subscribers_count examples: - default: &347 + default: &349 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44124,10 +44289,10 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - *17 - *19 - - &615 + - &617 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44145,7 +44310,7 @@ paths: application/json: schema: type: array - items: &324 + items: &326 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -44180,7 +44345,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &302 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -44193,7 +44358,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &303 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -44263,7 +44428,7 @@ paths: conditions: nullable: true anyOf: - - &298 + - &300 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -44287,7 +44452,7 @@ paths: match. items: type: string - - &302 + - &304 title: Organization ruleset conditions type: object description: |- @@ -44301,7 +44466,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -44335,7 +44500,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -44357,7 +44522,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *300 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -44370,7 +44535,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &301 title: Repository ruleset property targeting definition type: object @@ -44403,17 +44568,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *301 required: - repository_property rules: type: array - items: &616 + items: &618 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &305 title: creation description: Only allow users with bypass permission to create matching refs. @@ -44425,7 +44590,7 @@ paths: type: string enum: - creation - - &304 + - &306 title: update description: Only allow users with bypass permission to update matching refs. @@ -44446,7 +44611,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &307 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -44458,7 +44623,7 @@ paths: type: string enum: - deletion - - &306 + - &308 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -44470,7 +44635,7 @@ paths: type: string enum: - required_linear_history - - &614 + - &616 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44548,7 +44713,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &309 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -44572,7 +44737,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &310 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -44584,7 +44749,7 @@ paths: type: string enum: - required_signatures - - &309 + - &311 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -44690,7 +44855,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &312 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -44738,7 +44903,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &313 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -44750,7 +44915,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &314 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -44787,7 +44952,7 @@ paths: required: - operator - pattern - - &313 + - &315 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -44824,7 +44989,7 @@ paths: required: - operator - pattern - - &314 + - &316 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -44861,7 +45026,7 @@ paths: required: - operator - pattern - - &315 + - &317 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -44898,7 +45063,7 @@ paths: required: - operator - pattern - - &316 + - &318 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -44935,7 +45100,7 @@ paths: required: - operator - pattern - - &317 + - &319 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -44960,7 +45125,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &320 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -44984,7 +45149,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &321 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -45007,7 +45172,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &322 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -45032,7 +45197,7 @@ paths: maximum: 100 required: - max_file_size - - &321 + - &323 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -45082,7 +45247,7 @@ paths: - repository_id required: - workflows - - &322 + - &324 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -45143,7 +45308,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &325 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -45221,7 +45386,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 requestBody: description: Request body required: true @@ -45242,22 +45407,20 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *303 + conditions: *304 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &328 title: Repository Rule type: object description: A repository rule. oneOf: - - *303 - - *304 - *305 - *306 - *307 @@ -45277,6 +45440,8 @@ paths: - *321 - *322 - *323 + - *324 + - *325 required: - name - enforcement @@ -45314,9 +45479,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: &325 + default: &327 value: id: 21 name: super cool ruleset @@ -45371,8 +45536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *76 - - &617 + - *78 + - &619 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 @@ -45387,7 +45552,7 @@ paths: in: query schema: type: string - - &618 + - &620 name: time_period description: |- The time period to filter by. @@ -45403,14 +45568,14 @@ paths: - week - month default: day - - &619 + - &621 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 - - &620 + - &622 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45430,7 +45595,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &623 title: Rule Suites description: Response type: array @@ -45485,7 +45650,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &622 + default: &624 value: - id: 21 actor_id: 12 @@ -45528,8 +45693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *76 - - &623 + - *78 + - &625 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45545,7 +45710,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &626 title: Rule Suite description: Response type: object @@ -45644,7 +45809,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &625 + default: &627 value: id: 21 actor_id: 12 @@ -45705,7 +45870,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45717,9 +45882,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *325 + default: *327 '404': *6 '500': *55 put: @@ -45737,7 +45902,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45763,16 +45928,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *303 + conditions: *304 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *328 examples: default: value: @@ -45807,9 +45972,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *325 + default: *327 '404': *6 '422': *15 '500': *55 @@ -45828,7 +45993,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45851,7 +46016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *76 + - *78 - *17 - *19 - name: ruleset_id @@ -45867,7 +46032,7 @@ paths: application/json: schema: type: array - items: &327 + items: &329 title: Ruleset version type: object description: The historical version of a ruleset @@ -45891,7 +46056,7 @@ paths: type: string format: date-time examples: - default: &627 + default: &629 value: - version_id: 3 actor: @@ -45926,7 +46091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45944,9 +46109,9 @@ paths: description: Response content: application/json: - schema: &628 + schema: &630 allOf: - - *327 + - *329 - type: object required: - state @@ -46015,8 +46180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *76 - - &629 + - *78 + - &631 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46027,7 +46192,7 @@ paths: enum: - open - resolved - - &630 + - &632 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46037,7 +46202,7 @@ paths: required: false schema: type: string - - &631 + - &633 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46048,7 +46213,7 @@ paths: required: false schema: type: string - - &632 + - &634 name: exclude_providers in: query description: |- @@ -46059,7 +46224,7 @@ paths: required: false schema: type: string - - &633 + - &635 name: providers in: query description: |- @@ -46070,7 +46235,7 @@ paths: required: false schema: type: string - - &634 + - &636 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46079,7 +46244,7 @@ paths: required: false schema: type: string - - &635 + - &637 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46098,7 +46263,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &636 + - &638 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. @@ -46113,7 +46278,7 @@ paths: - *62 - *19 - *17 - - &637 + - &639 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 @@ -46123,7 +46288,7 @@ paths: required: false schema: type: string - - &638 + - &640 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 @@ -46133,7 +46298,7 @@ paths: required: false schema: type: string - - &639 + - &641 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46142,7 +46307,7 @@ paths: required: false schema: type: string - - &640 + - &642 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46151,7 +46316,7 @@ paths: schema: type: boolean default: false - - &641 + - &643 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46160,7 +46325,7 @@ paths: schema: type: boolean default: false - - &642 + - &644 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46179,8 +46344,8 @@ paths: items: type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -46188,21 +46353,21 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &643 + state: &645 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: &644 + resolution: &646 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -46319,8 +46484,8 @@ paths: pull request. ' - oneOf: &645 - - &647 + oneOf: &647 + - &649 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46378,7 +46543,7 @@ paths: - blob_url - commit_sha - commit_url - - &648 + - &650 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. @@ -46433,7 +46598,7 @@ paths: - page_url - commit_sha - commit_url - - &649 + - &651 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46453,7 +46618,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &650 + - &652 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46473,7 +46638,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &651 + - &653 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46493,7 +46658,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &652 + - &654 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46507,7 +46672,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &653 + - &655 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46521,7 +46686,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &654 + - &656 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46535,7 +46700,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &655 + - &657 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. @@ -46555,7 +46720,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &656 + - &658 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. @@ -46575,7 +46740,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &657 + - &659 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. @@ -46595,7 +46760,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &658 + - &660 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. @@ -46615,7 +46780,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &659 + - &661 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. @@ -46839,9 +47004,9 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46866,7 +47031,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 responses: '200': description: Response @@ -46878,7 +47043,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &329 + pattern_config_version: &331 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -46887,7 +47052,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &328 + items: &330 type: object properties: token_type: @@ -46953,7 +47118,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *328 + items: *330 examples: default: value: @@ -47002,7 +47167,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 requestBody: required: true content: @@ -47010,7 +47175,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *331 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -47036,7 +47201,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *331 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -47090,7 +47255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *76 + - *78 - *62 - name: sort description: The property to sort the results by. @@ -47134,7 +47299,7 @@ paths: application/json: schema: type: array - items: &663 + items: &665 description: A repository security advisory. type: object properties: @@ -47336,7 +47501,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 credits_detailed: type: array nullable: true @@ -47346,7 +47511,7 @@ paths: type: object properties: user: *4 - type: *330 + type: *332 state: type: string description: The state of the user's acceptance of the @@ -47370,7 +47535,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *195 + items: *197 private_fork: readOnly: true nullable: true @@ -47406,7 +47571,7 @@ paths: - private_fork additionalProperties: false examples: - default: &664 + default: &666 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47785,7 +47950,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *76 + - *78 responses: '200': description: Response @@ -47793,7 +47958,7 @@ paths: application/json: schema: type: array - items: *331 + items: *333 examples: default: value: @@ -47833,8 +47998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -47859,8 +48024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -47887,7 +48052,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Immutable releases settings response @@ -47936,7 +48101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -47993,7 +48158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 - *19 - *17 responses: @@ -48011,9 +48176,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48032,7 +48197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 requestBody: required: true content: @@ -48081,8 +48246,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -48104,8 +48269,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -48128,7 +48293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -48146,7 +48311,7 @@ paths: type: integer network_configurations: type: array - items: &332 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -48217,7 +48382,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48236,7 +48401,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: - - *76 + - *78 requestBody: required: true content: @@ -48292,9 +48457,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: &333 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -48322,8 +48487,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: - - *76 - - &334 + - *78 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -48335,11 +48500,11 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: *333 + default: *335 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48358,8 +48523,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: - - *76 - - *334 + - *78 + - *336 requestBody: required: true content: @@ -48412,9 +48577,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *334 examples: - default: *333 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48433,8 +48598,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: - - *76 - - *334 + - *78 + - *336 responses: '204': description: Response @@ -48457,7 +48622,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: - - *76 + - *78 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -48511,7 +48676,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48541,8 +48706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *76 - *78 + - *80 - 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`). @@ -48574,13 +48739,13 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '500': *55 '403': *29 '404': *6 - '422': *337 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48598,7 +48763,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *76 + - *78 - *17 - *19 - name: team_type @@ -48620,11 +48785,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -48644,7 +48809,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *76 + - *78 requestBody: required: true content: @@ -48708,7 +48873,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &340 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -48771,8 +48936,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *259 + required: *260 nullable: true members_count: type: integer @@ -49035,7 +49200,7 @@ paths: - repos_count - organization examples: - default: &339 + default: &341 value: id: 1 node_id: MDQ6VGVhbTE= @@ -49105,16 +49270,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *76 - *78 + - *80 responses: '200': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -49135,8 +49300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *76 - *78 + - *80 requestBody: required: false content: @@ -49198,16 +49363,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '201': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 '422': *15 '403': *29 @@ -49232,12 +49397,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response - '422': &340 + '422': &342 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -49260,8 +49425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -49271,12 +49436,12 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 - '422': *340 + Link: *70 + '422': *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49296,8 +49461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *76 - *78 + - *80 - name: role description: Filters members returned by their role in the team. in: query @@ -49320,9 +49485,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49350,15 +49515,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '200': description: Response content: application/json: - schema: &341 + schema: &343 title: Team Membership description: Team Membership type: object @@ -49385,7 +49550,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &679 + response-if-user-is-a-team-maintainer: &681 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49421,9 +49586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 requestBody: required: false content: @@ -49448,9 +49613,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &680 + response-if-users-membership-with-team-is-now-pending: &682 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49485,9 +49650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '204': description: Response @@ -49513,8 +49678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -49524,11 +49689,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49555,16 +49720,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &681 + schema: &683 title: Team Repository description: A team's access to a repository. type: object @@ -49587,8 +49752,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true forks: type: integer @@ -50126,10 +50291,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 requestBody: required: false content: @@ -50174,10 +50339,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *76 - *78 - - *342 - - *343 + - *80 + - *344 + - *345 responses: '204': description: Response @@ -50201,8 +50366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -50212,9 +50377,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: &682 + response-if-child-teams-exist: &684 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50242,7 +50407,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50267,7 +50432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *76 + - *78 - name: security_product in: path description: The security feature to enable or disable. @@ -50368,7 +50533,7 @@ paths: resources: type: object properties: - core: &344 + core: &346 title: Rate Limit type: object properties: @@ -50385,17 +50550,17 @@ paths: - remaining - reset - used - graphql: *344 - search: *344 - code_search: *344 - source_import: *344 - integration_manifest: *344 - code_scanning_upload: *344 - actions_runner_registration: *344 - scim: *344 - dependency_snapshots: *344 - dependency_sbom: *344 - code_scanning_autofix: *344 + graphql: *346 + search: *346 + code_search: *346 + source_import: *346 + integration_manifest: *346 + code_scanning_upload: *346 + actions_runner_registration: *346 + scim: *346 + dependency_snapshots: *346 + dependency_sbom: *346 + code_scanning_autofix: *346 required: - core - search @@ -50497,14 +50662,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *345 + schema: *347 examples: default-response: summary: Default response @@ -51008,7 +51173,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *346 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51026,8 +51191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -51325,10 +51490,10 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 - '307': &348 + default: *349 + '307': &350 description: Temporary Redirect content: application/json: @@ -51357,8 +51522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -51380,7 +51545,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *348 + '307': *350 '404': *6 '409': *54 x-github: @@ -51404,11 +51569,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - - &381 + - &383 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51431,7 +51596,7 @@ paths: type: integer artifacts: type: array - items: &349 + items: &351 title: Artifact description: An artifact type: object @@ -51509,7 +51674,7 @@ paths: - expires_at - updated_at examples: - default: &382 + default: &384 value: total_count: 2 artifacts: @@ -51548,7 +51713,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51570,9 +51735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *342 - - *343 - - &350 + - *344 + - *345 + - &352 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51584,7 +51749,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *351 examples: default: value: @@ -51622,9 +51787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *342 - - *343 - - *350 + - *344 + - *345 + - *352 responses: '204': description: Response @@ -51648,9 +51813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *342 - - *343 - - *350 + - *344 + - *345 + - *352 - name: archive_format in: path required: true @@ -51660,11 +51825,11 @@ paths: '302': description: Response headers: - Location: &504 + Location: &506 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': &545 + '410': &547 description: Gone content: application/json: @@ -51689,14 +51854,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &351 + schema: &353 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -51729,13 +51894,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *351 + schema: *353 examples: selected_actions: *42 responses: @@ -51764,14 +51929,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &352 + schema: &354 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -51804,13 +51969,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *352 + schema: *354 examples: selected_actions: *44 responses: @@ -51841,14 +52006,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *353 + schema: *355 examples: default: value: @@ -51874,11 +52039,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - - &354 + - &356 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 @@ -51912,7 +52077,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &357 title: Repository actions caches description: Repository actions caches type: object @@ -51954,7 +52119,7 @@ paths: - total_count - actions_caches examples: - default: &356 + default: &358 value: total_count: 1 actions_caches: @@ -51966,7 +52131,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51986,23 +52151,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: - - *342 - - *343 + - *344 + - *345 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *354 + - *356 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *356 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52022,8 +52187,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: - - *342 - - *343 + - *344 + - *345 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52054,9 +52219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *342 - - *343 - - &357 + - *344 + - *345 + - &359 name: job_id description: The unique identifier of the job. in: path @@ -52068,7 +52233,7 @@ paths: description: Response content: application/json: - schema: &385 + schema: &387 title: Job description: Information of a job execution in a workflow run type: object @@ -52375,9 +52540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *342 - - *343 - - *357 + - *344 + - *345 + - *359 responses: '302': description: Response @@ -52405,9 +52570,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *342 - - *343 - - *357 + - *344 + - *345 + - *359 requestBody: required: false content: @@ -52428,7 +52593,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -52452,8 +52617,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Status response @@ -52503,8 +52668,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -52538,7 +52703,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -52567,8 +52732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -52586,7 +52751,7 @@ paths: type: integer secrets: type: array - items: &387 + items: &389 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52606,7 +52771,7 @@ paths: - created_at - updated_at examples: - default: &388 + default: &390 value: total_count: 2 secrets: @@ -52617,7 +52782,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52639,9 +52804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *342 - - *343 - - *358 + - *344 + - *345 + - *360 - *19 responses: '200': @@ -52658,7 +52823,7 @@ paths: type: integer variables: type: array - items: &391 + items: &393 title: Actions Variable type: object properties: @@ -52688,7 +52853,7 @@ paths: - created_at - updated_at examples: - default: &392 + default: &394 value: total_count: 2 variables: @@ -52701,7 +52866,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52721,8 +52886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -52731,12 +52896,12 @@ paths: schema: type: object properties: - enabled: &360 + enabled: &362 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *144 - selected_actions_url: *359 - sha_pinning_required: *145 + allowed_actions: *146 + selected_actions_url: *361 + sha_pinning_required: *147 required: - enabled examples: @@ -52764,8 +52929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -52776,9 +52941,9 @@ paths: schema: type: object properties: - enabled: *360 - allowed_actions: *144 - sha_pinning_required: *145 + enabled: *362 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled examples: @@ -52808,14 +52973,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &361 + schema: &363 type: object properties: access_level: @@ -52832,7 +52997,7 @@ paths: required: - access_level examples: - default: &362 + default: &364 value: access_level: organization x-github: @@ -52856,15 +53021,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *361 + schema: *363 examples: - default: *362 + default: *364 responses: '204': description: Response @@ -52888,14 +53053,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -52919,8 +53084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Empty response for successful settings update @@ -52930,7 +53095,7 @@ paths: required: true content: application/json: - schema: *364 + schema: *366 examples: default: summary: Set retention days @@ -52954,16 +53119,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *146 + schema: *148 examples: - default: *365 + default: *367 '404': *6 x-github: enabledForGitHubApps: true @@ -52982,8 +53147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -52993,7 +53158,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -53017,16 +53182,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *366 + schema: *368 examples: - default: *147 + default: *149 '403': *29 '404': *6 x-github: @@ -53046,15 +53211,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *367 + schema: *369 examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -53078,16 +53243,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *149 + schema: *151 examples: - default: *150 + default: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53106,8 +53271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -53115,9 +53280,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53139,16 +53304,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53169,8 +53334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Success response @@ -53181,9 +53346,9 @@ paths: required: true content: application/json: - schema: *369 + schema: *371 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53210,8 +53375,8 @@ paths: in: query schema: type: string - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -53229,11 +53394,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53255,8 +53420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -53264,9 +53429,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *371 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53288,8 +53453,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -53332,7 +53497,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *372 + '201': *374 '404': *6 '422': *7 '409': *54 @@ -53363,16 +53528,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *373 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53400,16 +53565,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53431,17 +53596,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: *375 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53462,9 +53627,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: '204': description: Response @@ -53490,11 +53655,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: - '200': *165 + '200': *167 '404': *6 x-github: githubCloudOnly: false @@ -53516,9 +53681,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 requestBody: required: true content: @@ -53542,7 +53707,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -53566,9 +53731,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 requestBody: required: true content: @@ -53593,7 +53758,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -53617,11 +53782,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: - - *342 - - *343 - - *160 + - *344 + - *345 + - *162 responses: - '200': *376 + '200': *378 '404': *6 x-github: githubCloudOnly: false @@ -53648,12 +53813,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: - - *342 - - *343 - - *160 - - *377 + - *344 + - *345 + - *162 + - *379 responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -53679,9 +53844,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *342 - - *343 - - &395 + - *344 + - *345 + - &397 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. @@ -53689,7 +53854,7 @@ paths: required: false schema: type: string - - &396 + - &398 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53697,7 +53862,7 @@ paths: required: false schema: type: string - - &397 + - &399 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53706,7 +53871,7 @@ paths: required: false schema: type: string - - &398 + - &400 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 @@ -53733,7 +53898,7 @@ paths: - pending - *17 - *19 - - &399 + - &401 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)." @@ -53742,7 +53907,7 @@ paths: schema: type: string format: date-time - - &378 + - &380 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53751,13 +53916,13 @@ paths: schema: type: boolean default: false - - &400 + - &402 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &401 + - &403 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53780,7 +53945,7 @@ paths: type: integer workflow_runs: type: array - items: &379 + items: &381 title: Workflow Run description: An invocation of a workflow type: object @@ -53875,7 +54040,7 @@ paths: that triggered the run. type: array nullable: true - items: *91 + items: *93 created_at: type: string format: date-time @@ -53928,7 +54093,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &423 + properties: &425 id: type: string description: SHA for the commit @@ -53979,7 +54144,7 @@ paths: - name - email nullable: true - required: &424 + required: &426 - id - tree_id - message @@ -53987,8 +54152,8 @@ paths: - author - committer nullable: true - repository: *159 - head_repository: *159 + repository: *161 + head_repository: *161 head_repository_id: type: integer example: 5 @@ -54026,7 +54191,7 @@ paths: - workflow_url - pull_requests examples: - default: &402 + default: &404 value: total_count: 1 workflow_runs: @@ -54240,7 +54405,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54262,24 +54427,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *342 - - *343 - - &380 + - *344 + - *345 + - &382 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *378 + - *380 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &383 + default: &385 value: id: 30433642 name: Build @@ -54520,9 +54685,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '204': description: Response @@ -54545,9 +54710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -54666,15 +54831,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: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -54701,12 +54866,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 - *17 - *19 - - *381 + - *383 - *62 responses: '200': @@ -54723,11 +54888,11 @@ paths: type: integer artifacts: type: array - items: *349 + items: *351 examples: - default: *382 + default: *384 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54749,25 +54914,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *342 - - *343 - - *380 - - &384 + - *344 + - *345 + - *382 + - &386 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *378 + - *380 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *383 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54790,10 +54955,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *342 - - *343 - - *380 - - *384 + - *344 + - *345 + - *382 + - *386 - *17 - *19 responses: @@ -54811,9 +54976,9 @@ paths: type: integer jobs: type: array - items: *385 + items: *387 examples: - default: &386 + default: &388 value: total_count: 1 jobs: @@ -54902,7 +55067,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -54926,10 +55091,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *342 - - *343 - - *380 - - *384 + - *344 + - *345 + - *382 + - *386 responses: '302': description: Response @@ -54957,15 +55122,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -54992,9 +55157,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: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: true content: @@ -55061,15 +55226,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55096,9 +55261,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 - 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 @@ -55128,11 +55293,11 @@ paths: type: integer jobs: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55155,9 +55320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '302': description: Response @@ -55184,9 +55349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '204': description: Response @@ -55213,9 +55378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -55275,7 +55440,7 @@ paths: items: type: object properties: - type: &511 + type: &513 type: string description: The type of reviewer. enum: @@ -55285,7 +55450,7 @@ paths: reviewer: anyOf: - *4 - - *195 + - *197 required: - environment - wait_timer @@ -55360,9 +55525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: true content: @@ -55409,12 +55574,12 @@ paths: application/json: schema: type: array - items: &506 + items: &508 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &752 + properties: &754 url: type: string format: uri @@ -55497,9 +55662,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - required: &753 + properties: *83 + required: *84 + required: &755 - id - node_id - sha @@ -55515,7 +55680,7 @@ paths: - created_at - updated_at examples: - default: &507 + default: &509 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55571,9 +55736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: false content: @@ -55594,7 +55759,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55617,9 +55782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 requestBody: required: false content: @@ -55640,7 +55805,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55672,9 +55837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *342 - - *343 - - *380 + - *344 + - *345 + - *382 responses: '200': description: Response @@ -55811,8 +55976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -55830,11 +55995,11 @@ paths: type: integer secrets: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55857,16 +56022,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *390 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55888,17 +56053,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: &524 + default: &526 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -55924,9 +56089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -55957,7 +56122,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55983,9 +56148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -56010,9 +56175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *342 - - *343 - - *358 + - *344 + - *345 + - *360 - *19 responses: '200': @@ -56029,11 +56194,11 @@ paths: type: integer variables: type: array - items: *391 + items: *393 examples: - default: *392 + default: *394 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56054,8 +56219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -56082,7 +56247,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56107,17 +56272,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &525 + default: &527 value: name: USERNAME value: octocat @@ -56143,9 +56308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 requestBody: required: true content: @@ -56187,9 +56352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *342 - - *343 - - *170 + - *344 + - *345 + - *172 responses: '204': description: Response @@ -56214,8 +56379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -56233,7 +56398,7 @@ paths: type: integer workflows: type: array - items: &393 + items: &395 title: Workflow description: A GitHub Actions workflow type: object @@ -56317,7 +56482,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56340,9 +56505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *342 - - *343 - - &394 + - *344 + - *345 + - &396 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56357,7 +56522,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: default: value: @@ -56390,9 +56555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '204': description: Response @@ -56417,9 +56582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -56500,9 +56665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '204': description: Response @@ -56529,19 +56694,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *342 - - *343 - - *394 - - *395 + - *344 + - *345 - *396 - *397 - *398 - - *17 - - *19 - *399 - - *378 - *400 + - *17 + - *19 - *401 + - *380 + - *402 + - *403 responses: '200': description: Response @@ -56557,11 +56722,11 @@ paths: type: integer workflow_runs: type: array - items: *379 + items: *381 examples: - default: *402 + default: *404 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56591,9 +56756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *342 - - *343 - - *394 + - *344 + - *345 + - *396 responses: '200': description: Response @@ -56654,8 +56819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *342 - - *343 + - *344 + - *345 - *62 - *17 - *47 @@ -56800,7 +56965,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *7 x-github: githubCloudOnly: false @@ -56819,8 +56984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -56832,9 +56997,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -56857,8 +57022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *342 - - *343 + - *344 + - *345 - name: assignee in: path required: true @@ -56894,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -57005,8 +57170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *47 - *48 @@ -57047,7 +57212,7 @@ paths: initiator: type: string examples: - default: *403 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57067,8 +57232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -57076,7 +57241,7 @@ paths: application/json: schema: type: array - items: &404 + items: &406 title: Autolink reference description: An autolink reference. type: object @@ -57130,8 +57295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -57170,9 +57335,9 @@ paths: description: response content: application/json: - schema: *404 + schema: *406 examples: - default: &405 + default: &407 value: id: 1 key_prefix: TICKET- @@ -57203,9 +57368,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *342 - - *343 - - &406 + - *344 + - *345 + - &408 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57217,9 +57382,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *406 examples: - default: *405 + default: *407 '404': *6 x-github: githubCloudOnly: false @@ -57239,9 +57404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *342 - - *343 - - *406 + - *344 + - *345 + - *408 responses: '204': description: Response @@ -57265,8 +57430,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response if Dependabot is enabled @@ -57314,8 +57479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -57336,8 +57501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -57357,8 +57522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *342 - - *343 + - *344 + - *345 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57396,7 +57561,7 @@ paths: - url protected: type: boolean - protection: &408 + protection: &410 title: Branch Protection description: Branch Protection type: object @@ -57438,7 +57603,7 @@ paths: required: - contexts - checks - enforce_admins: &411 + enforce_admins: &413 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57453,7 +57618,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &413 + required_pull_request_reviews: &415 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57474,7 +57639,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *195 + items: *197 apps: description: The list of apps with review dismissal access. @@ -57503,7 +57668,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *195 + items: *197 apps: description: The list of apps allowed to bypass pull request requirements. @@ -57529,7 +57694,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &410 + restrictions: &412 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -57592,7 +57757,7 @@ paths: type: string teams: type: array - items: *195 + items: *197 apps: type: array items: @@ -57788,7 +57953,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -57806,9 +57971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *342 - - *343 - - &409 + - *344 + - *345 + - &411 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). @@ -57822,14 +57987,14 @@ paths: description: Response content: application/json: - schema: &419 + schema: &421 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &476 + commit: &478 title: Commit description: Commit type: object @@ -57863,7 +58028,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &407 + properties: &409 name: type: string example: '"Chris Wanstrath"' @@ -57879,7 +58044,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true message: type: string @@ -57900,7 +58065,7 @@ paths: required: - sha - url - verification: &531 + verification: &533 title: Verification type: object properties: @@ -57934,12 +58099,12 @@ paths: nullable: true oneOf: - *4 - - *168 + - *170 committer: nullable: true oneOf: - *4 - - *168 + - *170 parents: type: array items: @@ -57970,7 +58135,7 @@ paths: type: integer files: type: array - items: &489 + items: &491 title: Diff Entry description: Diff Entry type: object @@ -58054,7 +58219,7 @@ paths: - self protected: type: boolean - protection: *408 + protection: *410 protection_url: type: string format: uri @@ -58161,7 +58326,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *346 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -58183,15 +58348,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: default: value: @@ -58385,9 +58550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -58642,7 +58807,7 @@ paths: url: type: string format: uri - required_status_checks: &416 + required_status_checks: &418 title: Status Check Policy description: Status Check Policy type: object @@ -58718,7 +58883,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -58736,7 +58901,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -58794,7 +58959,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *410 + restrictions: *412 required_conversation_resolution: type: object properties: @@ -58906,9 +59071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -58933,17 +59098,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: &412 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -58965,17 +59130,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: *412 + default: *414 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58994,9 +59159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59021,17 +59186,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &414 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59127,9 +59292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59227,9 +59392,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *414 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -59250,9 +59415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59279,17 +59444,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: &415 + default: &417 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59312,17 +59477,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *413 examples: - default: *415 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -59342,9 +59507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59369,17 +59534,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: &417 + default: &419 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59405,9 +59570,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59459,9 +59624,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: - default: *417 + default: *419 '404': *6 '422': *15 x-github: @@ -59483,9 +59648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59509,9 +59674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -59545,9 +59710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59614,9 +59779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -59680,9 +59845,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: content: application/json: @@ -59748,15 +59913,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *410 + schema: *412 examples: default: value: @@ -59847,9 +60012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '204': description: Response @@ -59872,9 +60037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -59884,7 +60049,7 @@ paths: type: array items: *5 examples: - default: &418 + default: &420 value: - id: 1 slug: octoapp @@ -59941,9 +60106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -59977,7 +60142,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -59998,9 +60163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60034,7 +60199,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -60055,9 +60220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60091,7 +60256,7 @@ paths: type: array items: *5 examples: - default: *418 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -60113,9 +60278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -60123,9 +60288,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '404': *6 x-github: githubCloudOnly: false @@ -60145,9 +60310,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60183,9 +60348,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60206,9 +60371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: false content: @@ -60244,9 +60409,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60267,9 +60432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: content: application/json: @@ -60304,9 +60469,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 '422': *15 x-github: githubCloudOnly: false @@ -60328,9 +60493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 responses: '200': description: Response @@ -60340,7 +60505,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '404': *6 x-github: githubCloudOnly: false @@ -60364,9 +60529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60399,7 +60564,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60424,9 +60589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60459,7 +60624,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60484,9 +60649,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60519,7 +60684,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -60546,9 +60711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 requestBody: required: true content: @@ -60570,7 +60735,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: default: value: @@ -60686,8 +60851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -60966,7 +61131,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &422 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61077,16 +61242,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 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: *91 - deployment: &745 + items: *93 + deployment: &747 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61153,8 +61318,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -61366,9 +61531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *342 - - *343 - - &421 + - *344 + - *345 + - &423 name: check_run_id description: The unique identifier of the check run. in: path @@ -61380,9 +61545,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: &422 + default: &424 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -61482,9 +61647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 requestBody: required: true content: @@ -61724,9 +61889,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *422 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61746,9 +61911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 - *17 - *19 responses: @@ -61823,7 +61988,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61843,15 +62008,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *342 - - *343 - - *421 + - *344 + - *345 + - *423 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -61889,8 +62054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -61912,7 +62077,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &425 + schema: &427 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61976,7 +62141,7 @@ paths: nullable: true pull_requests: type: array - items: *91 + items: *93 nullable: true app: title: GitHub app @@ -61987,9 +62152,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - repository: *159 + properties: *83 + required: *84 + repository: *161 created_at: type: string format: date-time @@ -61998,12 +62163,12 @@ paths: type: string format: date-time nullable: true - head_commit: &773 + head_commit: &775 title: Simple Commit description: A commit. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 latest_check_runs_count: type: integer check_runs_url: @@ -62031,7 +62196,7 @@ paths: - check_runs_url - pull_requests examples: - default: &426 + default: &428 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -62322,9 +62487,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62343,8 +62508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -62405,7 +62570,7 @@ paths: required: - app_id - setting - repository: *159 + repository: *161 examples: default: value: @@ -62653,9 +62818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *342 - - *343 - - &427 + - *344 + - *345 + - &429 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -62667,9 +62832,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62692,17 +62857,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *342 - - *343 - - *427 - - &482 + - *344 + - *345 + - *429 + - &484 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &483 + - &485 name: status description: Returns check runs with the specified `status`. in: query @@ -62741,9 +62906,9 @@ paths: type: integer check_runs: type: array - items: *420 + items: *422 examples: - default: &484 + default: &486 value: total_count: 1 check_runs: @@ -62825,7 +62990,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62845,15 +63010,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *342 - - *343 - - *427 + - *344 + - *345 + - *429 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -62880,21 +63045,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *342 - - *343 - - *428 - - *429 + - *344 + - *345 + - *430 + - *431 - *19 - *17 - - &446 + - &448 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: *430 - - &447 + schema: *432 + - &449 name: pr description: The number of the pull request for the results you want to list. in: query @@ -62919,13 +63084,13 @@ paths: be returned. in: query required: false - schema: *431 + schema: *433 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *432 + schema: *434 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -62944,14 +63109,14 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *433 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *435 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -62959,12 +63124,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *434 - dismissed_comment: *435 - rule: *436 - tool: *437 - most_recent_instance: *438 + dismissed_at: *185 + dismissed_reason: *436 + dismissed_comment: *437 + rule: *438 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -63090,14 +63255,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &439 + '403': &441 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63117,9 +63282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *342 - - *343 - - &440 + - *344 + - *345 + - &442 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63127,23 +63292,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: &441 + schema: &443 type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *433 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *435 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -63151,9 +63316,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *434 - dismissed_comment: *435 + dismissed_at: *185 + dismissed_reason: *436 + dismissed_comment: *437 rule: type: object properties: @@ -63207,8 +63372,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *437 - most_recent_instance: *438 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -63307,9 +63472,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63327,9 +63492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: true content: @@ -63344,8 +63509,8 @@ paths: enum: - open - dismissed - dismissed_reason: *434 - dismissed_comment: *435 + dismissed_reason: *436 + dismissed_comment: *437 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -63373,7 +63538,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -63449,14 +63614,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &445 + '403': &447 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': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63476,15 +63641,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 responses: '200': description: Response content: application/json: - schema: &442 + schema: &444 type: object properties: status: @@ -63510,13 +63675,13 @@ paths: - description - started_at examples: - default: &443 + default: &445 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &444 + '400': &446 description: Bad Request content: application/json: @@ -63527,9 +63692,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': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63552,29 +63717,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 responses: '200': description: OK content: application/json: - schema: *442 + schema: *444 examples: - default: *443 + default: *445 '202': description: Accepted content: application/json: - schema: *442 + schema: *444 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *444 + '400': *446 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -63584,7 +63749,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63606,9 +63771,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: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: false content: @@ -63653,12 +63818,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *444 - '403': *445 + '400': *446 + '403': *447 '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63678,13 +63843,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 - *19 - *17 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -63695,10 +63860,10 @@ paths: items: type: object properties: - ref: *430 - analysis_key: *448 - environment: *449 - category: *450 + ref: *432 + analysis_key: *450 + environment: *451 + category: *452 state: type: string description: State of a code scanning alert instance. @@ -63713,7 +63878,7 @@ paths: properties: text: type: string - location: *451 + location: *453 html_url: type: string classifications: @@ -63721,7 +63886,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: *452 + items: *454 examples: default: value: @@ -63758,9 +63923,9 @@ paths: end_column: 50 classifications: - source - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63792,25 +63957,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *342 - - *343 - - *428 - - *429 + - *344 + - *345 + - *430 + - *431 - *19 - *17 - - *447 + - *449 - 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: *430 + schema: *432 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &453 + schema: &455 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -63831,23 +63996,23 @@ paths: application/json: schema: type: array - items: &454 + items: &456 type: object properties: - ref: *430 - commit_sha: &462 + ref: *432 + commit_sha: &464 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: *448 + analysis_key: *450 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *450 + category: *452 error: type: string example: error reading field xyz @@ -63871,8 +64036,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *453 - tool: *437 + sarif_id: *455 + tool: *439 deletable: type: boolean warning: @@ -63933,9 +64098,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63969,8 +64134,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: - - *342 - - *343 + - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63983,7 +64148,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: response: summary: application/json response @@ -64037,14 +64202,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *439 + '403': *441 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64124,8 +64289,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: - - *342 - - *343 + - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64178,9 +64343,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': *445 + '403': *447 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64200,8 +64365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -64209,7 +64374,7 @@ paths: application/json: schema: type: array - items: &455 + items: &457 title: CodeQL Database description: A CodeQL database. type: object @@ -64320,9 +64485,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': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64349,8 +64514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -64362,7 +64527,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -64394,11 +64559,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': &493 + '302': &495 description: Found - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64418,8 +64583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *342 - - *343 + - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -64429,9 +64594,9 @@ paths: responses: '204': description: Response - '403': *445 + '403': *447 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64457,8 +64622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -64467,7 +64632,7 @@ paths: type: object additionalProperties: false properties: - language: &456 + language: &458 type: string description: The language targeted by the CodeQL query enum: @@ -64547,7 +64712,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &460 + schema: &462 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -64557,7 +64722,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *456 + query_language: *458 query_pack_url: type: string description: The download url for the query pack. @@ -64604,7 +64769,7 @@ paths: items: type: object properties: - repository: &457 + repository: &459 title: Repository Identifier description: Repository Identifier type: object @@ -64640,7 +64805,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &461 + analysis_status: &463 type: string description: The new status of the CodeQL variant analysis repository task. @@ -64672,7 +64837,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &458 + access_mismatch_repos: &460 type: object properties: repository_count: @@ -64686,7 +64851,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: *457 + items: *459 required: - repository_count - repositories @@ -64708,8 +64873,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *458 - over_limit_repos: *458 + no_codeql_db_repos: *460 + over_limit_repos: *460 required: - access_mismatch_repos - not_found_repos @@ -64725,7 +64890,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &459 + value: &461 summary: Default response value: id: 1 @@ -64871,17 +65036,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *459 + value: *461 repository_lists: summary: Response for a successful variant analysis submission - value: *459 + value: *461 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64902,8 +65067,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: - - *342 - - *343 + - *344 + - *345 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -64915,11 +65080,11 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: - default: *459 + default: *461 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64940,7 +65105,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: - - *342 + - *344 - name: repo in: path description: The name of the controller repository. @@ -64975,7 +65140,7 @@ paths: type: object properties: repository: *67 - analysis_status: *461 + analysis_status: *463 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65079,7 +65244,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65100,8 +65265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -65184,9 +65349,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *439 + '403': *441 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65205,8 +65370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -65273,7 +65438,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -65298,7 +65463,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *445 + '403': *447 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -65312,7 +65477,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65369,8 +65534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -65378,7 +65543,7 @@ paths: schema: type: object properties: - commit_sha: *462 + commit_sha: *464 ref: type: string description: |- @@ -65436,7 +65601,7 @@ paths: schema: type: object properties: - id: *453 + id: *455 url: type: string description: The REST API URL for checking the status of the upload. @@ -65450,11 +65615,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': *445 + '403': *447 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65473,8 +65638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *342 - - *343 + - *344 + - *345 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -65520,10 +65685,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': *439 + '403': *441 '404': description: Not Found if the sarif id does not match any upload - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65545,8 +65710,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -65627,8 +65792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *342 - - *343 + - *344 + - *345 - 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 @@ -65748,8 +65913,8 @@ paths: parameters: - *17 - *19 - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -65765,7 +65930,7 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: default: value: @@ -66063,8 +66228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -66127,22 +66292,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66166,8 +66331,8 @@ paths: parameters: - *17 - *19 - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -66231,8 +66396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66267,14 +66432,14 @@ paths: type: integer machines: type: array - items: &687 + items: &689 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *464 - required: *465 + properties: *466 + required: *467 examples: - default: &688 + default: &690 value: total_count: 2 machines: @@ -66314,8 +66479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *342 - - *343 + - *344 + - *345 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -66399,8 +66564,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: - - *342 - - *343 + - *344 + - *345 - 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 @@ -66445,7 +66610,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66466,8 +66631,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -66485,7 +66650,7 @@ paths: type: integer secrets: type: array - items: &469 + items: &471 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -66505,9 +66670,9 @@ paths: - created_at - updated_at examples: - default: *466 + default: *468 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66528,16 +66693,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: *468 + default: *470 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66557,17 +66722,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: *470 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66587,9 +66752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -66617,7 +66782,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -66641,9 +66806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -66671,8 +66836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *342 - - *343 + - *344 + - *345 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -66714,7 +66879,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &471 + properties: &473 login: type: string example: octocat @@ -66807,7 +66972,7 @@ paths: user_view_type: type: string example: public - required: &472 + required: &474 - avatar_url - events_url - followers_url @@ -66856,7 +67021,7 @@ paths: admin: false role_name: write headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -66881,9 +67046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '204': description: Response if user is a collaborator @@ -66929,9 +67094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 requestBody: required: false content: @@ -66957,7 +67122,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &544 + schema: &546 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66968,7 +67133,7 @@ paths: example: 42 type: integer format: int64 - repository: *159 + repository: *161 invitee: title: Simple User description: A GitHub user. @@ -67146,7 +67311,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *128 + schema: *130 '403': *29 x-github: triggersNotification: true @@ -67186,9 +67351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '204': description: No Content when collaborator was removed from the repository. @@ -67219,9 +67384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *342 - - *343 - - *72 + - *344 + - *345 + - *74 responses: '200': description: if user has admin permissions @@ -67241,8 +67406,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *471 - required: *472 + properties: *473 + required: *474 nullable: true required: - permission @@ -67297,8 +67462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -67308,7 +67473,7 @@ paths: application/json: schema: type: array - items: &473 + items: &475 title: Commit Comment description: Commit Comment type: object @@ -67349,8 +67514,8 @@ paths: updated_at: type: string format: date-time - author_association: *83 - reactions: *84 + author_association: *85 + reactions: *86 required: - url - html_url @@ -67366,7 +67531,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &480 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67400,7 +67565,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67425,17 +67590,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *473 + schema: *475 examples: - default: &479 + default: &481 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67492,9 +67657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -67516,7 +67681,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *475 examples: default: value: @@ -67567,9 +67732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -67590,9 +67755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -67618,7 +67783,7 @@ paths: application/json: schema: type: array - items: &474 + items: &476 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -67661,7 +67826,7 @@ paths: - content - created_at examples: - default: &548 + default: &550 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67687,7 +67852,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -67706,9 +67871,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -67740,9 +67905,9 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: &475 + default: &477 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67771,9 +67936,9 @@ paths: description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -67795,10 +67960,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *342 - - *343 - - *102 - - &549 + - *344 + - *345 + - *104 + - &551 name: reaction_id description: The unique identifier of the reaction. in: path @@ -67853,8 +68018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *342 - - *343 + - *344 + - *345 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -67910,9 +68075,9 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: &600 + default: &602 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67982,7 +68147,7 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *68 + Link: *70 '500': *55 '400': *14 '404': *6 @@ -68006,9 +68171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *342 - - *343 - - &477 + - *344 + - *345 + - &479 name: commit_sha description: The SHA of the commit. in: path @@ -68080,9 +68245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 - *17 - *19 responses: @@ -68092,11 +68257,11 @@ paths: application/json: schema: type: array - items: *473 + items: *475 examples: - default: *478 + default: *480 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68122,9 +68287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 requestBody: required: true content: @@ -68159,9 +68324,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *475 examples: - default: *479 + default: *481 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68189,9 +68354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 - *17 - *19 responses: @@ -68201,9 +68366,9 @@ paths: application/json: schema: type: array - items: *480 + items: *482 examples: - default: &592 + default: &594 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68682,7 +68847,7 @@ paths: auto_merge: draft: false headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -68740,11 +68905,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 - - &481 + - &483 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)" @@ -68759,9 +68924,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *478 examples: - default: &579 + default: &581 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68849,7 +69014,7 @@ paths: schema: type: string examples: - default: &490 + default: &492 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -68862,7 +69027,7 @@ paths: schema: type: string examples: - default: &491 + default: &493 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -68889,7 +69054,7 @@ paths: '422': *15 '404': *6 '500': *55 - '503': *120 + '503': *122 '409': *54 x-github: githubCloudOnly: false @@ -68915,11 +69080,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *342 - - *343 - - *481 - - *482 + - *344 + - *345 - *483 + - *484 + - *485 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68953,11 +69118,11 @@ paths: type: integer check_runs: type: array - items: *420 + items: *422 examples: - default: *484 + default: *486 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68980,9 +69145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68990,7 +69155,7 @@ paths: schema: type: integer example: 1 - - *482 + - *484 - *17 - *19 responses: @@ -69008,7 +69173,7 @@ paths: type: integer check_suites: type: array - items: *425 + items: *427 examples: default: value: @@ -69183,7 +69348,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69208,9 +69373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - *17 - *19 responses: @@ -69277,7 +69442,7 @@ paths: type: string total_count: type: integer - repository: *159 + repository: *161 commit_url: type: string format: uri @@ -69408,9 +69573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *342 - - *343 - - *481 + - *344 + - *345 + - *483 - *17 - *19 responses: @@ -69420,7 +69585,7 @@ paths: application/json: schema: type: array - items: &668 + items: &670 title: Status description: The status of a commit. type: object @@ -69500,8 +69665,8 @@ paths: type: User site_admin: false headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69529,8 +69694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -69559,20 +69724,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *485 - required: *486 + properties: *487 + required: *488 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &487 + properties: &489 url: type: string format: uri html_url: type: string format: uri - required: &488 + required: &490 - url - html_url nullable: true @@ -69580,32 +69745,32 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true contributing: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true readme: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true issue_template: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true pull_request_template: title: Community Health File type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true required: - code_of_conduct @@ -69732,8 +69897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 - name: basehead @@ -69776,8 +69941,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *476 - merge_base_commit: *476 + base_commit: *478 + merge_base_commit: *478 status: type: string enum: @@ -69797,10 +69962,10 @@ paths: example: 6 commits: type: array - items: *476 + items: *478 files: type: array - items: *489 + items: *491 required: - url - html_url @@ -70046,15 +70211,15 @@ paths: schema: type: string examples: - default: *490 + default: *492 application/vnd.github.patch: schema: type: string examples: - default: *491 + default: *493 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70096,8 +70261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -70257,7 +70422,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &492 + response-if-content-is-a-file-github-object: &494 summary: Response if content is a file value: type: file @@ -70389,7 +70554,7 @@ paths: - size - type - url - - &605 + - &607 title: Content File description: Content File type: object @@ -70590,7 +70755,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *492 + response-if-content-is-a-file: *494 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -70659,7 +70824,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *493 + '302': *495 '304': *37 x-github: githubCloudOnly: false @@ -70682,8 +70847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -70776,7 +70941,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &496 title: File Commit description: File Commit type: object @@ -70928,7 +71093,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: example-for-creating-a-file: value: @@ -70982,7 +71147,7 @@ paths: schema: oneOf: - *3 - - &526 + - &528 description: Repository rule violation was detected type: object properties: @@ -71003,7 +71168,7 @@ paths: items: type: object properties: - placeholder_id: &660 + placeholder_id: &662 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71035,8 +71200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *342 - - *343 + - *344 + - *345 - name: path description: path parameter in: path @@ -71097,7 +71262,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -71132,7 +71297,7 @@ paths: '422': *15 '404': *6 '409': *54 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71152,8 +71317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *342 - - *343 + - *344 + - *345 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -71253,7 +71418,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *68 + Link: *70 '204': description: Response if repository is empty '403': *29 @@ -71276,24 +71441,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *342 - - *343 - - *197 - - *198 + - *344 + - *345 - *199 - *200 - *201 + - *202 + - *203 - 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 - - *202 - - *495 - - *203 - *204 + - *497 - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -71305,11 +71470,11 @@ paths: application/json: schema: type: array - items: &499 + items: &501 type: object description: A Dependabot alert. properties: - number: *177 + number: *179 state: type: string description: The state of the Dependabot alert. @@ -71352,13 +71517,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *496 + security_advisory: *498 security_vulnerability: *66 - url: *180 - html_url: *181 - created_at: *178 - updated_at: *179 - dismissed_at: *183 + url: *182 + html_url: *183 + created_at: *180 + updated_at: *181 + dismissed_at: *185 dismissed_by: title: Simple User description: A GitHub user. @@ -71382,9 +71547,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *182 - auto_dismissed_at: *497 - dismissal_request: *498 + fixed_at: *184 + auto_dismissed_at: *499 + dismissal_request: *500 assignees: type: array description: The users assigned to this alert. @@ -71639,9 +71804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *342 - - *343 - - &500 + - *344 + - *345 + - &502 name: alert_number in: path description: |- @@ -71650,13 +71815,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -71788,9 +71953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *342 - - *343 - - *500 + - *344 + - *345 + - *502 requestBody: required: true content: @@ -71846,7 +72011,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -71976,8 +72141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -71995,7 +72160,7 @@ paths: type: integer secrets: type: array - items: &503 + items: &505 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72026,7 +72191,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72048,16 +72213,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72077,15 +72242,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -72111,9 +72276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 requestBody: required: true content: @@ -72141,7 +72306,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -72165,9 +72330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *342 - - *343 - - *167 + - *344 + - *345 + - *169 responses: '204': description: Response @@ -72189,8 +72354,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: - - *342 - - *343 + - *344 + - *345 - 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 @@ -72326,7 +72491,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *68 + Link: *70 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -72350,8 +72515,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -72567,7 +72732,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *68 + Link: *70 '404': *6 '403': *29 x-github: @@ -72589,8 +72754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: sbom_uuid in: path required: true @@ -72601,7 +72766,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *504 + Location: *506 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -72622,8 +72787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response @@ -72661,8 +72826,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -72737,7 +72902,7 @@ paths: - version - url additionalProperties: false - metadata: &505 + metadata: &507 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -72770,7 +72935,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *505 + metadata: *507 resolved: type: object description: A collection of resolved package dependencies. @@ -72783,7 +72948,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *505 + metadata: *507 relationship: type: string description: A notation of whether a dependency is requested @@ -72912,8 +73077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *342 - - *343 + - *344 + - *345 - name: sha description: The SHA recorded at creation time. in: query @@ -72953,11 +73118,11 @@ paths: application/json: schema: type: array - items: *506 + items: *508 examples: - default: *507 + default: *509 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73021,8 +73186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -73103,7 +73268,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: simple-example: summary: Simple example @@ -73176,9 +73341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *342 - - *343 - - &508 + - *344 + - *345 + - &510 name: deployment_id description: deployment_id parameter in: path @@ -73190,7 +73355,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: default: value: @@ -73255,9 +73420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 responses: '204': description: Response @@ -73279,9 +73444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 - *17 - *19 responses: @@ -73291,7 +73456,7 @@ paths: application/json: schema: type: array - items: &509 + items: &511 title: Deployment Status description: The status of a deployment. type: object @@ -73382,8 +73547,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -73432,7 +73597,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -73452,9 +73617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 requestBody: required: true content: @@ -73529,9 +73694,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: &510 + default: &512 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -73587,9 +73752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *342 - - *343 - - *508 + - *344 + - *345 + - *510 - name: status_id in: path required: true @@ -73600,9 +73765,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: *510 + default: *512 '404': *6 x-github: githubCloudOnly: false @@ -73627,8 +73792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -73685,8 +73850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -73703,7 +73868,7 @@ paths: type: integer environments: type: array - items: &512 + items: &514 title: Environment description: Details of a deployment environment type: object @@ -73755,7 +73920,7 @@ paths: type: type: string example: wait_timer - wait_timer: &514 + wait_timer: &516 type: integer example: 30 description: The amount of time to delay a job after @@ -73792,11 +73957,11 @@ paths: items: type: object properties: - type: *511 + type: *513 reviewer: anyOf: - *4 - - *195 + - *197 required: - id - node_id @@ -73816,7 +73981,7 @@ paths: - id - node_id - type - deployment_branch_policy: &515 + deployment_branch_policy: &517 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -73932,9 +74097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *342 - - *343 - - &513 + - *344 + - *345 + - &515 name: environment_name in: path required: true @@ -73947,9 +74112,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *514 examples: - default: &516 + default: &518 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74033,9 +74198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: false content: @@ -74044,7 +74209,7 @@ paths: type: object nullable: true properties: - wait_timer: *514 + wait_timer: *516 prevent_self_review: type: boolean example: false @@ -74061,13 +74226,13 @@ paths: items: type: object properties: - type: *511 + type: *513 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *515 + deployment_branch_policy: *517 additionalProperties: false examples: default: @@ -74087,9 +74252,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *514 examples: - default: *516 + default: *518 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74113,9 +74278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 responses: '204': description: Default response @@ -74140,9 +74305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 - *17 - *19 responses: @@ -74160,7 +74325,7 @@ paths: example: 2 branch_policies: type: array - items: &517 + items: &519 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74217,9 +74382,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: true content: @@ -74265,9 +74430,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - example-wildcard: &518 + example-wildcard: &520 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -74309,10 +74474,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - &519 + - *344 + - *345 + - *515 + - &521 name: branch_policy_id in: path required: true @@ -74324,9 +74489,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - default: *518 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74345,10 +74510,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - *519 + - *344 + - *345 + - *515 + - *521 requestBody: required: true content: @@ -74376,9 +74541,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *519 examples: - default: *518 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74397,10 +74562,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *342 - - *343 - - *513 - - *519 + - *344 + - *345 + - *515 + - *521 responses: '204': description: Response @@ -74425,9 +74590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 responses: '200': description: List of deployment protection rules @@ -74443,7 +74608,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &520 + items: &522 title: Deployment protection rule description: Deployment protection rule type: object @@ -74462,7 +74627,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &521 + app: &523 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -74561,9 +74726,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: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 requestBody: content: application/json: @@ -74584,9 +74749,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *520 + schema: *522 examples: - default: &522 + default: &524 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -74621,9 +74786,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: - - *513 - - *343 - - *342 + - *515 + - *345 + - *344 - *19 - *17 responses: @@ -74642,7 +74807,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *521 + items: *523 examples: default: value: @@ -74677,10 +74842,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *342 - - *343 - - *513 - - &523 + - *344 + - *345 + - *515 + - &525 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -74692,9 +74857,9 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: - default: *522 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74715,10 +74880,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *513 - - *343 - - *342 - - *523 + - *515 + - *345 + - *344 + - *525 responses: '204': description: Response @@ -74744,9 +74909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 - *17 - *19 responses: @@ -74764,11 +74929,11 @@ paths: type: integer secrets: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74791,17 +74956,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *390 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74823,18 +74988,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *524 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74856,10 +75021,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 requestBody: required: true content: @@ -74890,7 +75055,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -74916,10 +75081,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *342 - - *343 - - *513 - - *167 + - *344 + - *345 + - *515 + - *169 responses: '204': description: Default response @@ -74944,10 +75109,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *342 - - *343 - - *513 - - *358 + - *344 + - *345 + - *515 + - *360 - *19 responses: '200': @@ -74964,11 +75129,11 @@ paths: type: integer variables: type: array - items: *391 + items: *393 examples: - default: *392 + default: *394 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74989,9 +75154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *342 - - *343 - - *513 + - *344 + - *345 + - *515 requestBody: required: true content: @@ -75018,7 +75183,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -75043,18 +75208,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *342 - - *343 - - *513 - - *170 + - *344 + - *345 + - *515 + - *172 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *525 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75075,10 +75240,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *342 - - *343 - - *170 - - *513 + - *344 + - *345 + - *172 + - *515 requestBody: required: true content: @@ -75120,10 +75285,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *342 - - *343 - - *170 - - *513 + - *344 + - *345 + - *172 + - *515 responses: '204': description: Response @@ -75145,8 +75310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -75156,7 +75321,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -75214,8 +75379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *342 - - *343 + - *344 + - *345 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -75237,7 +75402,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -75350,7 +75515,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *68 + Link: *70 '400': *14 x-github: githubCloudOnly: false @@ -75374,8 +75539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -75407,9 +75572,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 '400': *14 '422': *15 '403': *29 @@ -75430,8 +75595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -75490,8 +75655,8 @@ paths: application/json: schema: oneOf: - - *128 - - *526 + - *130 + - *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75516,8 +75681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *342 - - *343 + - *344 + - *345 - name: file_sha in: path required: true @@ -75616,8 +75781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -75726,7 +75891,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &529 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75940,15 +76105,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *342 - - *343 - - *477 + - *344 + - *345 + - *479 responses: '200': description: Response content: application/json: - schema: *527 + schema: *529 examples: default: value: @@ -76004,9 +76169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *342 - - *343 - - &528 + - *344 + - *345 + - &530 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. @@ -76023,7 +76188,7 @@ paths: application/json: schema: type: array - items: &529 + items: &531 title: Git Reference description: Git references within a repository type: object @@ -76076,7 +76241,7 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -76098,17 +76263,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: &530 + default: &532 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76137,8 +76302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76167,9 +76332,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -76195,9 +76360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 requestBody: required: true content: @@ -76226,9 +76391,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 '422': *15 '409': *54 x-github: @@ -76246,9 +76411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *342 - - *343 - - *528 + - *344 + - *345 + - *530 responses: '204': description: Response @@ -76303,8 +76468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76371,7 +76536,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &534 title: Git Tag description: Metadata for a Git tag type: object @@ -76422,7 +76587,7 @@ paths: - sha - type - url - verification: *531 + verification: *533 required: - sha - url @@ -76432,7 +76597,7 @@ paths: - tag - message examples: - default: &533 + default: &535 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -76505,8 +76670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *342 - - *343 + - *344 + - *345 - name: tag_sha in: path required: true @@ -76517,9 +76682,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *534 examples: - default: *533 + default: *535 '404': *6 '409': *54 x-github: @@ -76543,8 +76708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -76617,7 +76782,7 @@ paths: description: Response content: application/json: - schema: &534 + schema: &536 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -76713,8 +76878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *342 - - *343 + - *344 + - *345 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -76737,7 +76902,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: default-response: summary: Default response @@ -76796,8 +76961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -76807,7 +76972,7 @@ paths: application/json: schema: type: array - items: &535 + items: &537 title: Webhook description: Webhooks for repositories. type: object @@ -76861,7 +77026,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &781 + last_response: &783 title: Hook Response type: object properties: @@ -76916,7 +77081,7 @@ paths: status: unused message: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -76935,8 +77100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -76988,9 +77153,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: &536 + default: &538 value: type: Repository id: 12345678 @@ -77038,17 +77203,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '200': description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: *536 + default: *538 '404': *6 x-github: githubCloudOnly: false @@ -77068,9 +77233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 requestBody: required: true content: @@ -77115,9 +77280,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: *536 + default: *538 '422': *15 '404': *6 x-github: @@ -77138,9 +77303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77164,9 +77329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '200': description: Response @@ -77193,9 +77358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 requestBody: required: false content: @@ -77239,12 +77404,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 - - *17 - - *216 + - *344 + - *345 - *217 + - *17 + - *218 + - *219 responses: '200': description: Response @@ -77252,9 +77417,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *219 + default: *221 '400': *14 '422': *15 x-github: @@ -77273,18 +77438,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: - default: *221 + default: *223 '400': *14 '422': *15 x-github: @@ -77303,9 +77468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 - *16 responses: '202': *39 @@ -77328,9 +77493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77355,9 +77520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *342 - - *343 - - *215 + - *344 + - *345 + - *217 responses: '204': description: Response @@ -77380,8 +77545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response if immutable releases are enabled @@ -77427,8 +77592,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '409': *54 @@ -77448,8 +77613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '409': *54 @@ -77506,14 +77671,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &537 + schema: &539 title: Import description: A repository import from an external source. type: object @@ -77612,7 +77777,7 @@ paths: - html_url - authors_url examples: - default: &540 + default: &542 value: vcs: subversion use_lfs: true @@ -77628,7 +77793,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': &538 + '503': &540 description: Unavailable due to service under maintenance. content: application/json: @@ -77657,8 +77822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -77706,7 +77871,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: default: value: @@ -77731,7 +77896,7 @@ paths: type: string '422': *15 '404': *6 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77759,8 +77924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -77809,7 +77974,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: example-1: summary: Example 1 @@ -77857,7 +78022,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': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77880,12 +78045,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77911,9 +78076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *342 - - *343 - - &710 + - *344 + - *345 + - &712 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77927,7 +78092,7 @@ paths: application/json: schema: type: array - items: &539 + items: &541 title: Porter Author description: Porter Author type: object @@ -77981,7 +78146,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': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78006,8 +78171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *342 - - *343 + - *344 + - *345 - name: author_id in: path required: true @@ -78037,7 +78202,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: default: value: @@ -78050,7 +78215,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78074,8 +78239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78116,7 +78281,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78144,8 +78309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -78172,11 +78337,11 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: - default: *540 + default: *542 '422': *15 - '503': *538 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78199,8 +78364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78208,8 +78373,8 @@ paths: application/json: schema: *22 examples: - default: *541 - '301': *346 + default: *543 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -78229,8 +78394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -78238,12 +78403,12 @@ paths: application/json: schema: anyOf: - - *234 + - *236 - type: object properties: {} additionalProperties: false examples: - default: &543 + default: &545 value: limit: collaborators_only origin: repository @@ -78268,13 +78433,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: application/json: - schema: *542 + schema: *544 examples: default: summary: Example request body @@ -78286,9 +78451,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *543 + default: *545 '409': description: Response x-github: @@ -78310,8 +78475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -78334,8 +78499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -78345,9 +78510,9 @@ paths: application/json: schema: type: array - items: *544 + items: *546 examples: - default: &702 + default: &704 value: - id: 1 repository: @@ -78461,7 +78626,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78478,9 +78643,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *342 - - *343 - - *238 + - *344 + - *345 + - *240 requestBody: required: false content: @@ -78509,7 +78674,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: default: value: @@ -78640,9 +78805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *342 - - *343 - - *238 + - *344 + - *345 + - *240 responses: '204': description: Response @@ -78673,8 +78838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *342 - - *343 + - *344 + - *345 - 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 @@ -78722,7 +78887,7 @@ paths: required: false schema: type: string - - *245 + - *247 - name: sort description: What to sort results by. in: query @@ -78735,7 +78900,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -78745,9 +78910,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &556 + default: &558 value: - id: 1 node_id: MDU6SXNzdWUx @@ -78895,8 +79060,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '422': *15 '404': *6 x-github: @@ -78925,8 +79090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -79001,9 +79166,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: &553 + default: &555 value: id: 1 node_id: MDU6SXNzdWUx @@ -79139,9 +79304,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *120 + '503': *122 '404': *6 - '410': *545 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -79169,9 +79334,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *342 - - *343 - - *110 + - *344 + - *345 + - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -79181,7 +79346,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -79191,9 +79356,9 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: &555 + default: &557 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79224,7 +79389,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '404': *6 x-github: @@ -79251,17 +79416,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &547 + default: &549 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79316,9 +79481,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -79340,9 +79505,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 '422': *15 x-github: githubCloudOnly: false @@ -79360,9 +79525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -79390,15 +79555,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *546 + schema: *548 examples: default: value: @@ -79454,7 +79619,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -79471,17 +79636,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *545 - '503': *120 + '410': *547 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79498,9 +79663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -79526,11 +79691,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -79549,9 +79714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -79583,16 +79748,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -79614,10 +79779,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *342 - - *343 - - *102 - - *549 + - *344 + - *345 + - *104 + - *551 responses: '204': description: Response @@ -79637,8 +79802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -79648,7 +79813,7 @@ paths: application/json: schema: type: array - items: &552 + items: &554 title: Issue Event description: Issue Event type: object @@ -79691,8 +79856,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *550 - required: *551 + properties: *552 + required: *553 nullable: true label: title: Issue Event Label @@ -79736,7 +79901,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *195 + requested_team: *197 dismissed_review: title: Issue Event Dismissed Review type: object @@ -79801,7 +79966,7 @@ paths: required: - from - to - author_association: *83 + author_association: *85 lock_reason: type: string nullable: true @@ -79814,8 +79979,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -79982,7 +80147,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -80000,8 +80165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *342 - - *343 + - *344 + - *345 - name: event_id in: path required: true @@ -80012,7 +80177,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *554 examples: default: value: @@ -80205,7 +80370,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *545 + '410': *547 '403': *29 x-github: githubCloudOnly: false @@ -80239,9 +80404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *342 - - *343 - - &554 + - *344 + - *345 + - &556 name: issue_number description: The number that identifies the issue. in: path @@ -80253,11 +80418,11 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: default: summary: Issue - value: *553 + value: *555 pinned_comment: summary: Issue with pinned comment value: @@ -80437,9 +80602,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 '304': *37 x-github: githubCloudOnly: false @@ -80464,9 +80629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -80585,15 +80750,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 '422': *15 - '503': *120 + '503': *122 '403': *29 - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80611,9 +80776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -80639,9 +80804,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80657,9 +80822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: content: application/json: @@ -80684,9 +80849,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80708,9 +80873,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: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: assignee in: path required: true @@ -80750,10 +80915,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *342 - - *343 - - *554 - - *93 + - *344 + - *345 + - *556 + - *95 - *17 - *19 responses: @@ -80763,13 +80928,13 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: *555 + default: *557 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80798,9 +80963,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -80822,16 +80987,16 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -80859,9 +81024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -80871,14 +81036,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80906,9 +81071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -80930,17 +81095,17 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *346 + '301': *348 '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -80971,9 +81136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -80985,15 +81150,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 - '301': *346 + default: *555 + '301': *348 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *545 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -81019,9 +81184,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81031,14 +81196,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81055,9 +81220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81071,7 +81236,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &560 + - &562 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81102,8 +81267,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -81125,7 +81290,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &563 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81156,8 +81321,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -81245,8 +81410,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 assigner: *4 required: @@ -81261,7 +81426,7 @@ paths: - performed_via_github_app - assignee - assigner - - &562 + - &564 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81292,8 +81457,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -81312,7 +81477,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &565 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81343,8 +81508,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -81363,7 +81528,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &566 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81394,8 +81559,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 rename: type: object properties: @@ -81417,7 +81582,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &567 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81448,10 +81613,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -81464,7 +81629,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &568 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81495,10 +81660,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -81511,7 +81676,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &569 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81542,8 +81707,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 dismissed_review: type: object properties: @@ -81571,7 +81736,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &570 title: Locked Issue Event description: Locked Issue Event type: object @@ -81602,8 +81767,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 lock_reason: type: string example: '"off-topic"' @@ -81619,7 +81784,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &571 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81650,8 +81815,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -81685,7 +81850,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &572 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -81716,8 +81881,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -81751,7 +81916,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &573 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -81782,8 +81947,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -81817,7 +81982,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &574 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -81907,8 +82072,8 @@ paths: name: label color: red headers: - Link: *68 - '410': *545 + Link: *70 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81925,9 +82090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -81937,9 +82102,9 @@ paths: application/json: schema: type: array - items: *557 + items: *559 examples: - default: &558 + default: &560 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -81962,10 +82127,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81994,9 +82159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82060,14 +82225,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *557 + items: *559 examples: - default: *558 + default: *560 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82098,9 +82263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82165,14 +82330,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *557 + items: *559 examples: - default: *558 + default: *560 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82198,17 +82363,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *342 - - *343 - - *554 - - *241 + - *344 + - *345 + - *556 + - *243 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82226,9 +82391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -82238,9 +82403,9 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: &559 + default: &561 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82257,10 +82422,10 @@ paths: color: a2eeef default: false headers: - Link: *68 - '301': *346 + Link: *70 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82276,9 +82441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -82321,12 +82486,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 - '301': *346 + default: *561 + '301': *348 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -82343,9 +82508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -82405,12 +82570,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 - '301': *346 + default: *561 + '301': *348 '404': *6 - '410': *545 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -82427,15 +82592,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '204': description: Response - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82454,9 +82619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - name: name in: path required: true @@ -82469,7 +82634,7 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: default: value: @@ -82480,9 +82645,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *346 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82502,9 +82667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: false content: @@ -82532,7 +82697,7 @@ paths: '204': description: Response '403': *29 - '410': *545 + '410': *547 '404': *6 '422': *15 x-github: @@ -82550,9 +82715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '204': description: Response @@ -82582,20 +82747,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 - '301': *346 + default: *555 + '301': *348 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82612,9 +82777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - 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. @@ -82640,13 +82805,13 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82664,9 +82829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82698,16 +82863,16 @@ paths: description: Response content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Response content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -82729,10 +82894,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *342 - - *343 - - *554 - - *549 + - *344 + - *345 + - *556 + - *551 responses: '204': description: Response @@ -82761,9 +82926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82785,9 +82950,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82820,9 +82985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -82832,13 +82997,13 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *556 + default: *558 headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82866,9 +83031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82895,16 +83060,16 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *545 + '410': *547 '422': *15 '404': *6 x-github: @@ -82924,9 +83089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 requestBody: required: true content: @@ -82957,13 +83122,13 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *553 + default: *555 '403': *29 '404': *6 '422': *7 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -82981,9 +83146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *342 - - *343 - - *554 + - *344 + - *345 + - *556 - *17 - *19 responses: @@ -82998,8 +83163,6 @@ paths: description: Timeline Event type: object anyOf: - - *560 - - *561 - *562 - *563 - *564 @@ -83011,6 +83174,8 @@ paths: - *570 - *571 - *572 + - *573 + - *574 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83053,7 +83218,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -83063,16 +83228,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true required: - event @@ -83104,7 +83269,7 @@ paths: properties: type: type: string - issue: *86 + issue: *88 required: - event - created_at @@ -83304,7 +83469,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - event - id @@ -83327,7 +83492,7 @@ paths: type: string comments: type: array - items: &594 + items: &596 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83422,7 +83587,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: @@ -83506,7 +83671,7 @@ paths: enum: - line - file - reactions: *84 + reactions: *86 body_html: type: string example: '"

comment body

"' @@ -83542,7 +83707,7 @@ paths: type: string comments: type: array - items: *473 + items: *475 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83573,8 +83738,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -83617,8 +83782,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -83661,8 +83826,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 state_reason: type: string nullable: true @@ -83829,9 +83994,9 @@ paths: type: User site_admin: true headers: - Link: *68 + Link: *70 '404': *6 - '410': *545 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83848,8 +84013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -83859,7 +84024,7 @@ paths: application/json: schema: type: array - items: &575 + items: &577 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83909,7 +84074,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83925,8 +84090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -83962,9 +84127,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *577 examples: - default: &576 + default: &578 value: id: 1 key: ssh-rsa AAA... @@ -83998,9 +84163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *342 - - *343 - - &577 + - *344 + - *345 + - &579 name: key_id description: The unique identifier of the key. in: path @@ -84012,9 +84177,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *577 examples: - default: *576 + default: *578 '404': *6 x-github: githubCloudOnly: false @@ -84032,9 +84197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *342 - - *343 - - *577 + - *344 + - *345 + - *579 responses: '204': description: Response @@ -84054,8 +84219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -84065,11 +84230,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 + default: *561 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -84088,8 +84253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84125,9 +84290,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: &578 + default: &580 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84159,8 +84324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84171,9 +84336,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: *578 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -84190,8 +84355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84230,7 +84395,7 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -84256,8 +84421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *342 - - *343 + - *344 + - *345 - name: name in: path required: true @@ -84283,8 +84448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -84323,9 +84488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *342 - - *343 - - *446 + - *344 + - *345 + - *448 responses: '200': description: Response @@ -84387,8 +84552,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true required: - _links @@ -84470,8 +84635,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84536,8 +84701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84571,9 +84736,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *476 + schema: *478 examples: - default: *579 + default: *581 '204': description: Response when already merged '404': @@ -84598,8 +84763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *342 - - *343 + - *344 + - *345 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84640,12 +84805,12 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 examples: default: value: @@ -84684,7 +84849,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -84701,8 +84866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -84742,9 +84907,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: &581 + default: &583 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84803,9 +84968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *342 - - *343 - - &582 + - *344 + - *345 + - &584 name: milestone_number description: The number that identifies the milestone. in: path @@ -84817,9 +84982,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *581 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -84836,9 +85001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 requestBody: required: false content: @@ -84876,9 +85041,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *581 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84894,9 +85059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 responses: '204': description: Response @@ -84917,9 +85082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *342 - - *343 - - *582 + - *344 + - *345 + - *584 - *17 - *19 responses: @@ -84929,11 +85094,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *559 + default: *561 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84950,12 +85115,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *342 - - *343 - - *583 - - *584 - - *93 + - *344 + - *345 - *585 + - *586 + - *95 + - *587 - *17 - *19 responses: @@ -84965,11 +85130,11 @@ paths: application/json: schema: type: array - items: *113 + items: *115 examples: - default: *586 + default: *588 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84991,8 +85156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -85050,14 +85215,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &587 + schema: &589 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85182,7 +85347,7 @@ paths: - custom_404 - public examples: - default: &588 + default: &590 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85223,8 +85388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85278,9 +85443,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *589 examples: - default: *588 + default: *590 '422': *15 '409': *54 x-github: @@ -85303,8 +85468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85403,8 +85568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -85430,8 +85595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -85441,7 +85606,7 @@ paths: application/json: schema: type: array - items: &589 + items: &591 title: Page Build description: Page Build type: object @@ -85516,7 +85681,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85535,8 +85700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *342 - - *343 + - *344 + - *345 responses: '201': description: Response @@ -85581,16 +85746,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *589 + schema: *591 examples: - default: &590 + default: &592 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85638,8 +85803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *342 - - *343 + - *344 + - *345 - name: build_id in: path required: true @@ -85650,9 +85815,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *591 examples: - default: *590 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85672,8 +85837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -85778,9 +85943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *342 - - *343 - - &591 + - *344 + - *345 + - &593 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85838,9 +86003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *342 - - *343 - - *591 + - *344 + - *345 + - *593 responses: '204': *61 '404': *6 @@ -85867,8 +86032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -86099,7 +86264,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -86126,8 +86291,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: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Private vulnerability reporting status @@ -86164,8 +86329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '422': *14 @@ -86186,8 +86351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': *61 '422': *14 @@ -86209,8 +86374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -86218,7 +86383,7 @@ paths: application/json: schema: type: array - items: *294 + items: *296 examples: default: value: @@ -86249,8 +86414,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: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -86262,7 +86427,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *294 + items: *296 required: - properties examples: @@ -86312,8 +86477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *342 - - *343 + - *344 + - *345 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86373,11 +86538,11 @@ paths: application/json: schema: type: array - items: *480 + items: *482 examples: - default: *592 + default: *594 headers: - Link: *68 + Link: *70 '304': *37 '422': *15 x-github: @@ -86407,8 +86572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -86473,7 +86638,7 @@ paths: description: Response content: application/json: - schema: &596 + schema: &598 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86584,8 +86749,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true active_lock_reason: type: string @@ -86617,7 +86782,7 @@ paths: items: *4 requested_teams: type: array - items: *331 + items: *333 head: type: object properties: @@ -86625,7 +86790,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -86642,7 +86807,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -86655,14 +86820,14 @@ paths: _links: type: object properties: - comments: *281 - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + comments: *283 + commits: *283 + statuses: *283 + html: *283 + issue: *283 + review_comments: *283 + review_comment: *283 + self: *283 required: - comments - commits @@ -86672,8 +86837,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: *593 + author_association: *85 + auto_merge: *595 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -86763,7 +86928,7 @@ paths: - merged_by - review_comments examples: - default: &597 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87270,8 +87435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *342 - - *343 + - *344 + - *345 - name: sort in: query required: false @@ -87290,7 +87455,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -87300,9 +87465,9 @@ paths: application/json: schema: type: array - items: *594 + items: *596 examples: - default: &599 + default: &601 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87354,7 +87519,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87379,17 +87544,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '200': description: Response content: application/json: - schema: *594 + schema: *596 examples: - default: &595 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87464,9 +87629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -87488,9 +87653,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: - default: *595 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87506,9 +87671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 responses: '204': description: Response @@ -87529,9 +87694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 - 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. @@ -87557,11 +87722,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -87580,9 +87745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *342 - - *343 - - *102 + - *344 + - *345 + - *104 requestBody: required: true content: @@ -87614,16 +87779,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -87645,10 +87810,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *342 - - *343 - - *102 - - *549 + - *344 + - *345 + - *104 + - *551 responses: '204': description: Response @@ -87691,9 +87856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *342 - - *343 - - &598 + - *344 + - *345 + - &600 name: pull_number description: The number that identifies the pull request. in: path @@ -87706,9 +87871,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *596 + schema: *598 examples: - default: *597 + default: *599 '304': *37 '404': *6 '406': @@ -87717,7 +87882,7 @@ paths: application/json: schema: *3 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87743,9 +87908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -87787,9 +87952,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *598 examples: - default: *597 + default: *599 '422': *15 '403': *29 x-github: @@ -87811,9 +87976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#archive-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response @@ -87838,9 +88003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#unarchive-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response @@ -87866,9 +88031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -87928,21 +88093,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87968,10 +88133,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *342 - - *343 - - *598 - - *110 + - *344 + - *345 + - *600 + - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -87981,7 +88146,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -87991,11 +88156,11 @@ paths: application/json: schema: type: array - items: *594 + items: *596 examples: - default: *599 + default: *601 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88026,9 +88191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -88133,7 +88298,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: example-for-a-multi-line-comment: value: @@ -88221,10 +88386,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *342 - - *343 - - *598 - - *102 + - *344 + - *345 + - *600 + - *104 requestBody: required: true content: @@ -88246,7 +88411,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *596 examples: default: value: @@ -88332,9 +88497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -88344,11 +88509,11 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *600 + default: *602 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88376,9 +88541,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -88388,7 +88553,7 @@ paths: application/json: schema: type: array - items: *489 + items: *491 examples: default: value: @@ -88404,10 +88569,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *68 + Link: *70 '422': *15 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88426,9 +88591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '204': description: Response if pull request has been merged @@ -88451,9 +88616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -88564,9 +88729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 responses: '200': description: Response @@ -88582,7 +88747,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 required: - users - teams @@ -88623,7 +88788,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88641,9 +88806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -88680,7 +88845,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -89216,9 +89381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: true content: @@ -89252,7 +89417,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -89737,9 +89902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 - *17 - *19 responses: @@ -89749,7 +89914,7 @@ paths: application/json: schema: type: array - items: &601 + items: &603 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89818,7 +89983,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - id - node_id @@ -89867,7 +90032,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89900,9 +90065,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -89988,9 +90153,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: &603 + default: &605 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90053,10 +90218,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - &602 + - *344 + - *345 + - *600 + - &604 name: review_id description: The unique identifier of the review. in: path @@ -90068,9 +90233,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: &604 + default: &606 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90129,10 +90294,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -90155,7 +90320,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: default: value: @@ -90217,18 +90382,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 responses: '200': description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: *603 + default: *605 '422': *7 '404': *6 x-github: @@ -90255,10 +90420,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 - *17 - *19 responses: @@ -90337,13 +90502,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: - self: *281 - html: *281 - pull_request: *281 + self: *283 + html: *283 + pull_request: *283 required: - self - html @@ -90352,7 +90517,7 @@ paths: type: string body_html: type: string - reactions: *84 + reactions: *86 side: description: The side of the first line of the range for a multi-line comment. @@ -90464,7 +90629,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -90493,10 +90658,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -90524,7 +90689,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: default: value: @@ -90587,10 +90752,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *342 - - *343 - - *598 - - *602 + - *344 + - *345 + - *600 + - *604 requestBody: required: true content: @@ -90625,9 +90790,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *603 examples: - default: *604 + default: *606 '404': *6 '422': *7 '403': *29 @@ -90649,9 +90814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *342 - - *343 - - *598 + - *344 + - *345 + - *600 requestBody: required: false content: @@ -90714,8 +90879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *342 - - *343 + - *344 + - *345 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -90728,9 +90893,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: &606 + default: &608 value: type: file encoding: base64 @@ -90772,8 +90937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *342 - - *343 + - *344 + - *345 - name: dir description: The alternate path to look for a README file in: path @@ -90793,9 +90958,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: *606 + default: *608 '404': *6 '422': *15 x-github: @@ -90817,8 +90982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -90828,7 +90993,7 @@ paths: application/json: schema: type: array - items: *607 + items: *609 examples: default: value: @@ -90902,7 +91067,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -90922,8 +91087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -90999,9 +91164,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: &611 + default: &613 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91106,9 +91271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *342 - - *343 - - &609 + - *344 + - *345 + - &611 name: asset_id description: The unique identifier of the asset. in: path @@ -91120,9 +91285,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: &610 + default: &612 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 @@ -91157,7 +91322,7 @@ paths: type: User site_admin: false '404': *6 - '302': *493 + '302': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91173,9 +91338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *342 - - *343 - - *609 + - *344 + - *345 + - *611 requestBody: required: false content: @@ -91203,9 +91368,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *610 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91221,9 +91386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *342 - - *343 - - *609 + - *344 + - *345 + - *611 responses: '204': description: Response @@ -91248,8 +91413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -91334,16 +91499,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -91361,8 +91526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *342 - - *343 + - *344 + - *345 - name: tag description: tag parameter in: path @@ -91375,9 +91540,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -91399,9 +91564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *342 - - *343 - - &612 + - *344 + - *345 + - &614 name: release_id description: The unique identifier of the release. in: path @@ -91415,9 +91580,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: *607 + schema: *609 examples: - default: *611 + default: *613 '401': description: Unauthorized x-github: @@ -91435,9 +91600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 requestBody: required: false content: @@ -91501,9 +91666,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: - default: *611 + default: *613 '404': description: Not Found if the discussion category name is invalid content: @@ -91524,9 +91689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 responses: '204': description: Response @@ -91547,9 +91712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - *17 - *19 responses: @@ -91559,7 +91724,7 @@ paths: application/json: schema: type: array - items: *608 + items: *610 examples: default: value: @@ -91596,7 +91761,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91640,9 +91805,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: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - name: name in: query required: true @@ -91668,7 +91833,7 @@ paths: description: Response for successful upload content: application/json: - schema: *608 + schema: *610 examples: response-for-successful-upload: value: @@ -91723,9 +91888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 - 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. @@ -91749,11 +91914,11 @@ paths: application/json: schema: type: array - items: *474 + items: *476 examples: - default: *548 + default: *550 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -91772,9 +91937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *342 - - *343 - - *612 + - *344 + - *345 + - *614 requestBody: required: true content: @@ -91804,16 +91969,16 @@ paths: description: Reaction exists content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '201': description: Reaction created content: application/json: - schema: *474 + schema: *476 examples: - default: *475 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -91835,10 +92000,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *342 - - *343 - - *612 - - *549 + - *344 + - *345 + - *614 + - *551 responses: '204': description: Response @@ -91862,9 +92027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *342 - - *343 - - *409 + - *344 + - *345 + - *411 - *17 - *19 responses: @@ -91880,8 +92045,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &613 + - *305 + - &615 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91900,69 +92065,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *304 - - *613 - - allOf: - - *305 - - *613 - allOf: - *306 - - *613 - - allOf: - - *614 - - *613 + - *615 - allOf: - *307 - - *613 + - *615 - allOf: - *308 - - *613 + - *615 + - allOf: + - *616 + - *615 - allOf: - *309 - - *613 + - *615 - allOf: - *310 - - *613 + - *615 - allOf: - *311 - - *613 + - *615 - allOf: - *312 - - *613 + - *615 - allOf: - *313 - - *613 + - *615 - allOf: - *314 - - *613 + - *615 - allOf: - *315 - - *613 + - *615 - allOf: - *316 - - *613 + - *615 - allOf: - *317 - - *613 + - *615 - allOf: - *318 - - *613 + - *615 - allOf: - *319 - - *613 + - *615 - allOf: - *320 - - *613 + - *615 - allOf: - *321 - - *613 + - *615 - allOf: - *322 - - *613 + - *615 - allOf: - *323 - - *613 + - *615 + - allOf: + - *324 + - *615 + - allOf: + - *325 + - *615 examples: default: value: @@ -92001,8 +92166,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - name: includes_parents @@ -92013,7 +92178,7 @@ paths: schema: type: boolean default: true - - *615 + - *617 responses: '200': description: Response @@ -92021,7 +92186,7 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: default: value: @@ -92068,8 +92233,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 requestBody: description: Request body required: true @@ -92089,16 +92254,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *303 + conditions: *300 rules: type: array description: An array of rules within the ruleset. - items: *616 + items: *618 required: - name - enforcement @@ -92129,9 +92294,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: &626 + default: &628 value: id: 42 name: super cool ruleset @@ -92179,12 +92344,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *342 - - *343 - - *617 - - *618 + - *344 + - *345 - *619 - *620 + - *621 + - *622 - *17 - *19 responses: @@ -92192,9 +92357,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *623 examples: - default: *622 + default: *624 '404': *6 '500': *55 x-github: @@ -92215,17 +92380,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *342 - - *343 - - *623 + - *344 + - *345 + - *625 responses: '200': description: Response content: application/json: - schema: *624 + schema: *626 examples: - default: *625 + default: *627 '404': *6 '500': *55 x-github: @@ -92253,8 +92418,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92274,9 +92439,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *626 + default: *628 '404': *6 '500': *55 put: @@ -92294,8 +92459,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92320,16 +92485,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *303 + conditions: *300 rules: description: An array of rules within the ruleset. type: array - items: *616 + items: *618 examples: default: value: @@ -92357,9 +92522,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *326 examples: - default: *626 + default: *628 '404': *6 '422': *15 '500': *55 @@ -92378,8 +92543,8 @@ paths: category: repos subcategory: rules parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92402,8 +92567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 - name: ruleset_id @@ -92419,9 +92584,9 @@ paths: application/json: schema: type: array - items: *327 + items: *329 examples: - default: *627 + default: *629 '404': *6 '500': *55 x-github: @@ -92440,8 +92605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *342 - - *343 + - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92459,7 +92624,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: default: value: @@ -92514,25 +92679,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *342 - - *343 - - *629 - - *630 + - *344 + - *345 - *631 - *632 - *633 - *634 - *635 - *636 + - *637 + - *638 - *62 - *19 - *17 - - *637 - - *638 - *639 - *640 - *641 - *642 + - *643 + - *644 responses: '200': description: Response @@ -92540,11 +92705,11 @@ paths: application/json: schema: type: array - items: &646 + items: &648 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -92552,15 +92717,15 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *643 - resolution: *644 + state: *645 + resolution: *646 resolved_at: type: string format: date-time @@ -92666,7 +92831,7 @@ paths: pull request. ' - oneOf: *645 + oneOf: *647 nullable: true has_more_locations: type: boolean @@ -92808,7 +92973,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92830,16 +92995,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 - - *642 + - *344 + - *345 + - *442 + - *644 responses: '200': description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -92870,7 +93035,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92893,9 +93058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 requestBody: required: true content: @@ -92903,8 +93068,8 @@ paths: schema: type: object properties: - state: *643 - resolution: *644 + state: *645 + resolution: *646 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92940,7 +93105,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -93013,7 +93178,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93035,9 +93200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *342 - - *343 - - *440 + - *344 + - *345 + - *442 - *19 - *17 responses: @@ -93048,7 +93213,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &803 + items: &805 type: object properties: type: @@ -93074,8 +93239,6 @@ paths: example: commit details: oneOf: - - *647 - - *648 - *649 - *650 - *651 @@ -93087,6 +93250,8 @@ paths: - *657 - *658 - *659 + - *660 + - *661 examples: default: value: @@ -93146,11 +93311,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *68 + Link: *70 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93172,8 +93337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -93181,14 +93346,14 @@ paths: schema: type: object properties: - reason: &661 + reason: &663 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *660 + placeholder_id: *662 required: - reason - placeholder_id @@ -93205,7 +93370,7 @@ paths: schema: type: object properties: - reason: *661 + reason: *663 expire_at: type: string format: date-time @@ -93228,7 +93393,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93251,13 +93416,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: - - *342 - - *343 + - *344 + - *345 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *120 + '503': *122 '200': description: Response content: @@ -93267,7 +93432,7 @@ paths: properties: incremental_scans: type: array - items: &662 + items: &664 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93293,15 +93458,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *662 + items: *664 backfill_scans: type: array - items: *662 + items: *664 custom_pattern_backfill_scans: type: array items: allOf: - - *662 + - *664 - type: object properties: pattern_name: @@ -93314,7 +93479,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *662 + items: *664 examples: default: value: @@ -93379,8 +93544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *342 - - *343 + - *344 + - *345 - *62 - name: sort description: The property to sort the results by. @@ -93424,9 +93589,9 @@ paths: application/json: schema: type: array - items: *663 + items: *665 examples: - default: *664 + default: *666 '400': *14 '404': *6 x-github: @@ -93449,8 +93614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -93523,7 +93688,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 required: - login - type @@ -93610,9 +93775,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: &666 + default: &668 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93842,8 +94007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -93947,7 +94112,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: default: value: @@ -94093,17 +94258,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '200': description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *666 + default: *668 '403': *29 '404': *6 x-github: @@ -94127,9 +94292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 requestBody: required: true content: @@ -94202,7 +94367,7 @@ paths: login: type: string description: The username of the user credited. - type: *330 + type: *332 required: - login - type @@ -94288,17 +94453,17 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *666 - add_credit: *666 + default: *668 + add_credit: *668 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *128 + schema: *130 examples: invalid_state_transition: value: @@ -94329,9 +94494,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: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '202': *39 '400': *14 @@ -94358,17 +94523,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *342 - - *343 - - *665 + - *344 + - *345 + - *667 responses: '202': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 '400': *14 '422': *15 '403': *29 @@ -94394,8 +94559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -94472,7 +94637,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -94494,8 +94659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -94504,7 +94669,7 @@ paths: application/json: schema: type: array - items: &667 + items: &669 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94537,8 +94702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -94614,8 +94779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -94711,8 +94876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -94866,8 +95031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -94877,7 +95042,7 @@ paths: application/json: schema: type: array - items: *667 + items: *669 examples: default: value: @@ -94910,8 +95075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *342 - - *343 + - *344 + - *345 - name: sha in: path required: true @@ -94965,7 +95130,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *670 examples: default: value: @@ -95019,8 +95184,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95032,9 +95197,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95052,14 +95217,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &669 + schema: &671 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95127,8 +95292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: false content: @@ -95154,7 +95319,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *671 examples: default: value: @@ -95181,8 +95346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -95202,8 +95367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95259,7 +95424,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95282,8 +95447,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *342 - - *343 + - *344 + - *345 - name: ref in: path required: true @@ -95319,8 +95484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *342 - - *343 + - *344 + - *345 - *17 - *19 responses: @@ -95330,11 +95495,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *259 + default: *261 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -95352,8 +95517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *342 - - *343 + - *344 + - *345 - *19 - *17 responses: @@ -95361,7 +95526,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &672 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -95373,7 +95538,7 @@ paths: required: - names examples: - default: &671 + default: &673 value: names: - octocat @@ -95396,8 +95561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -95428,9 +95593,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: *671 + default: *673 '404': *6 '422': *7 x-github: @@ -95451,9 +95616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *342 - - *343 - - &672 + - *344 + - *345 + - &674 name: per description: The time frame to display results for. in: query @@ -95482,7 +95647,7 @@ paths: example: 128 clones: type: array - items: &673 + items: &675 title: Traffic type: object properties: @@ -95569,8 +95734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -95660,8 +95825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *342 - - *343 + - *344 + - *345 responses: '200': description: Response @@ -95721,9 +95886,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *342 - - *343 - - *672 + - *344 + - *345 + - *674 responses: '200': description: Response @@ -95742,7 +95907,7 @@ paths: example: 3782 views: type: array - items: *673 + items: *675 required: - uniques - count @@ -95819,8 +95984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *342 - - *343 + - *344 + - *345 requestBody: required: true content: @@ -95856,7 +96021,7 @@ paths: description: Response content: application/json: - schema: *159 + schema: *161 examples: default: value: @@ -96093,8 +96258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96117,8 +96282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -96140,8 +96305,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -96167,8 +96332,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *342 - - *343 + - *344 + - *345 - name: ref in: path required: true @@ -96260,9 +96425,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96303,7 +96468,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -96495,7 +96660,7 @@ paths: html_url: type: string format: uri - repository: *159 + repository: *161 score: type: number file_size: @@ -96513,7 +96678,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &674 + text_matches: &676 title: Search Result Text Matches type: array items: @@ -96627,7 +96792,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *120 + '503': *122 '422': *15 '403': *29 x-github: @@ -96675,7 +96840,7 @@ paths: enum: - author-date - committer-date - - &675 + - &677 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 @@ -96746,7 +96911,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true comment_count: type: integer @@ -96766,7 +96931,7 @@ paths: url: type: string format: uri - verification: *531 + verification: *533 required: - author - committer @@ -96785,7 +96950,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *407 + properties: *409 nullable: true parents: type: array @@ -96798,12 +96963,12 @@ paths: type: string sha: type: string - repository: *159 + repository: *161 score: type: number node_id: type: string - text_matches: *674 + text_matches: *676 required: - sha - node_id @@ -96995,7 +97160,7 @@ paths: - interactions - created - updated - - *675 + - *677 - *17 - *19 - name: advanced_search @@ -97109,11 +97274,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: type: string state_reason: @@ -97123,8 +97288,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *281 + required: *282 nullable: true comments: type: integer @@ -97138,7 +97303,7 @@ paths: type: string format: date-time nullable: true - text_matches: *674 + text_matches: *676 pull_request: type: object properties: @@ -97171,10 +97336,10 @@ paths: type: string score: type: number - author_association: *83 + author_association: *85 draft: type: boolean - repository: *80 + repository: *82 body_html: type: string body_text: @@ -97182,7 +97347,7 @@ paths: timeline_url: type: string format: uri - type: *242 + type: *244 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -97192,17 +97357,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - reactions: *84 + reactions: *86 required: - closed_at - comments @@ -97354,7 +97519,7 @@ paths: - quoted_text items: - "..." - '503': *120 + '503': *122 '422': *15 '304': *37 '403': *29 @@ -97408,7 +97573,7 @@ paths: enum: - created - updated - - *675 + - *677 - *17 - *19 responses: @@ -97452,7 +97617,7 @@ paths: nullable: true score: type: number - text_matches: *674 + text_matches: *676 required: - id - node_id @@ -97537,7 +97702,7 @@ paths: - forks - help-wanted-issues - updated - - *675 + - *677 - *17 - *19 responses: @@ -97765,8 +97930,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true permissions: type: object @@ -97785,7 +97950,7 @@ paths: - admin - pull - push - text_matches: *674 + text_matches: *676 temp_clone_token: type: string allow_merge_commit: @@ -97987,7 +98152,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *120 + '503': *122 '422': *15 '304': *37 x-github: @@ -98085,7 +98250,7 @@ paths: type: string format: uri nullable: true - text_matches: *674 + text_matches: *676 related: type: array nullable: true @@ -98276,7 +98441,7 @@ paths: - followers - repositories - joined - - *675 + - *677 - *17 - *19 responses: @@ -98380,7 +98545,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *674 + text_matches: *676 blog: type: string nullable: true @@ -98439,7 +98604,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *120 + '503': *122 '422': *15 x-github: githubCloudOnly: false @@ -98459,7 +98624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &678 + - &680 name: team_id description: The unique identifier of the team. in: path @@ -98471,9 +98636,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -98500,7 +98665,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *678 + - *680 requestBody: required: true content: @@ -98563,16 +98728,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '201': description: Response content: application/json: - schema: *338 + schema: *340 examples: - default: *339 + default: *341 '404': *6 '422': *15 '403': *29 @@ -98600,7 +98765,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *678 + - *680 responses: '204': description: Response @@ -98629,7 +98794,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -98639,11 +98804,11 @@ paths: application/json: schema: type: array - items: *236 + items: *238 examples: - default: *237 + default: *239 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98667,7 +98832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *678 + - *680 - name: role description: Filters members returned by their role in the team. in: query @@ -98690,9 +98855,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -98718,8 +98883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: if user is a member @@ -98755,8 +98920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -98795,8 +98960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -98832,16 +98997,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-user-is-a-team-maintainer: *679 + response-if-user-is-a-team-maintainer: *681 '404': *6 x-github: githubCloudOnly: false @@ -98874,8 +99039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 requestBody: required: false content: @@ -98900,9 +99065,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *680 + response-if-users-membership-with-team-is-now-pending: *682 '403': description: Forbidden if team synchronization is set up '422': @@ -98936,8 +99101,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *678 - - *72 + - *680 + - *74 responses: '204': description: Response @@ -98964,7 +99129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -98974,11 +99139,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -99006,15 +99171,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *681 + schema: *683 examples: alternative-response-with-extra-repository-information: value: @@ -99164,9 +99329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 requestBody: required: false content: @@ -99216,9 +99381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *678 - - *342 - - *343 + - *680 + - *344 + - *345 responses: '204': description: Response @@ -99243,7 +99408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *678 + - *680 - *17 - *19 responses: @@ -99253,11 +99418,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: *682 + response-if-child-teams-exist: *684 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '422': *15 @@ -99288,7 +99453,7 @@ paths: application/json: schema: oneOf: - - &683 + - &685 title: Private User description: Private User type: object @@ -99491,7 +99656,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &709 + - &711 title: Public User description: Public User type: object @@ -99803,7 +99968,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: default: value: @@ -99882,7 +100047,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '304': *37 '404': *6 '403': *29 @@ -99905,7 +100070,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: - - *72 + - *74 responses: '204': description: If the user is blocked @@ -99933,7 +100098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -99957,7 +100122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -100006,9 +100171,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *249 examples: - default: *248 + default: *250 '304': *37 '500': *55 '401': *25 @@ -100147,21 +100312,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100201,7 +100366,7 @@ paths: type: integer secrets: type: array - items: &684 + items: &686 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -100241,9 +100406,9 @@ paths: - visibility - selected_repositories_url examples: - default: *466 + default: *468 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100311,13 +100476,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '200': description: Response content: application/json: - schema: *684 + schema: *686 examples: default: value: @@ -100347,7 +100512,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 requestBody: required: true content: @@ -100392,7 +100557,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -100420,7 +100585,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '204': description: Response @@ -100445,7 +100610,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 responses: '200': description: Response @@ -100461,9 +100626,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *196 + default: *198 '401': *25 '403': *29 '404': *6 @@ -100488,7 +100653,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 requestBody: required: true content: @@ -100542,7 +100707,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -100575,7 +100740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -100607,15 +100772,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '304': *37 '500': *55 '401': *25 @@ -100641,7 +100806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 requestBody: required: false content: @@ -100671,9 +100836,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '401': *25 '403': *29 '404': *6 @@ -100695,7 +100860,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '202': *39 '304': *37 @@ -100724,13 +100889,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '202': description: Response content: application/json: - schema: &685 + schema: &687 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100771,7 +100936,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &686 + default: &688 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100803,7 +100968,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *249 + - *251 - name: export_id in: path required: true @@ -100816,9 +100981,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: *686 + default: *688 '404': *6 x-github: githubCloudOnly: false @@ -100839,7 +101004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *249 + - *251 responses: '200': description: Response @@ -100855,9 +101020,9 @@ paths: type: integer machines: type: array - items: *687 + items: *689 examples: - default: *688 + default: *690 '304': *37 '500': *55 '401': *25 @@ -100886,7 +101051,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *249 + - *251 requestBody: required: true content: @@ -100936,13 +101101,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *345 + repository: *347 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *464 - required: *465 + properties: *466 + required: *467 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -101716,15 +101881,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '304': *37 '500': *55 '400': *14 @@ -101756,15 +101921,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *249 + - *251 responses: '200': description: Response content: application/json: - schema: *247 + schema: *249 examples: - default: *463 + default: *465 '500': *55 '401': *25 '403': *29 @@ -101794,9 +101959,9 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: &699 + default: &701 value: - id: 197 name: hello_docker @@ -101897,7 +102062,7 @@ paths: application/json: schema: type: array - items: &689 + items: &691 title: Email description: Email type: object @@ -101962,16 +102127,16 @@ paths: application/json: schema: type: array - items: *689 + items: *691 examples: - default: &701 + default: &703 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -102039,7 +102204,7 @@ paths: application/json: schema: type: array - items: *689 + items: *691 examples: default: value: @@ -102149,9 +102314,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -102182,9 +102347,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -102204,7 +102369,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: - - *72 + - *74 responses: '204': description: if the person is followed by the authenticated user @@ -102234,7 +102399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -102259,7 +102424,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -102295,7 +102460,7 @@ paths: application/json: schema: type: array - items: &690 + items: &692 title: GPG Key description: A unique encryption key type: object @@ -102426,7 +102591,7 @@ paths: - subkeys - revoked examples: - default: &718 + default: &720 value: - id: 3 name: Octocat's GPG Key @@ -102458,7 +102623,7 @@ paths: revoked: false raw_key: string headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -102511,9 +102676,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *692 examples: - default: &691 + default: &693 value: id: 3 name: Octocat's GPG Key @@ -102570,7 +102735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &692 + - &694 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102582,9 +102747,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *692 examples: - default: *691 + default: *693 '404': *6 '304': *37 '403': *29 @@ -102607,7 +102772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *692 + - *694 responses: '204': description: Response @@ -102750,7 +102915,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -102798,11 +102963,11 @@ paths: type: array items: allOf: - - *80 + - *82 examples: - default: *151 + default: *153 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '304': *37 @@ -102826,7 +102991,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -102852,7 +103017,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -102886,12 +103051,12 @@ paths: application/json: schema: anyOf: - - *234 + - *236 - type: object properties: {} additionalProperties: false examples: - default: *235 + default: *237 '204': description: Response when there are no restrictions x-github: @@ -102915,7 +103080,7 @@ paths: required: true content: application/json: - schema: *542 + schema: *544 examples: default: value: @@ -102926,7 +103091,7 @@ paths: description: Response content: application/json: - schema: *234 + schema: *236 examples: default: value: @@ -103007,7 +103172,7 @@ paths: - closed - all default: open - - *245 + - *247 - name: sort description: What to sort results by. in: query @@ -103020,7 +103185,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -103030,11 +103195,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *246 + default: *248 headers: - Link: *68 + Link: *70 '404': *6 '304': *37 x-github: @@ -103065,7 +103230,7 @@ paths: application/json: schema: type: array - items: &693 + items: &695 title: Key description: Key type: object @@ -103116,7 +103281,7 @@ paths: verified: false read_only: false headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -103166,9 +103331,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *695 examples: - default: &694 + default: &696 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103201,15 +103366,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *577 + - *579 responses: '200': description: Response content: application/json: - schema: *693 + schema: *695 examples: - default: *694 + default: *696 '404': *6 '304': *37 '403': *29 @@ -103232,7 +103397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *577 + - *579 responses: '204': description: Response @@ -103265,7 +103430,7 @@ paths: application/json: schema: type: array - items: &695 + items: &697 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103322,7 +103487,7 @@ paths: - id - type - login - plan: *104 + plan: *106 required: - billing_cycle - next_billing_date @@ -103333,7 +103498,7 @@ paths: - account - plan examples: - default: &696 + default: &698 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103366,7 +103531,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '304': *37 '401': *25 '404': *6 @@ -103395,11 +103560,11 @@ paths: application/json: schema: type: array - items: *695 + items: *697 examples: - default: *696 + default: *698 headers: - Link: *68 + Link: *70 '304': *37 '401': *25 x-github: @@ -103437,7 +103602,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -103520,7 +103685,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103545,13 +103710,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -103613,7 +103778,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 requestBody: required: true content: @@ -103638,7 +103803,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -103710,7 +103875,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -103863,7 +104028,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103963,7 +104128,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -104143,7 +104308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *254 + - *256 - name: exclude in: query required: false @@ -104156,7 +104321,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -104350,7 +104515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *254 + - *256 responses: '302': description: Response @@ -104376,7 +104541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *254 + - *256 responses: '204': description: Response @@ -104405,8 +104570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *254 - - *697 + - *256 + - *699 responses: '204': description: Response @@ -104430,7 +104595,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *254 + - *256 - *17 - *19 responses: @@ -104442,7 +104607,7 @@ paths: type: array items: *67 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -104475,11 +104640,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -104519,7 +104684,7 @@ paths: - docker - nuget - container - - *698 + - *700 - *19 - *17 responses: @@ -104529,10 +104694,10 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *699 - '400': *700 + default: *701 + '400': *702 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104552,16 +104717,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: &719 + default: &721 value: id: 40201 name: octo-name @@ -104674,8 +104839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 responses: '204': description: Response @@ -104705,8 +104870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 + - *265 - name: token description: package token schema: @@ -104738,8 +104903,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: - - *262 - - *263 + - *264 + - *265 - *19 - *17 - name: state @@ -104759,7 +104924,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -104808,15 +104973,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -104852,9 +105017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '204': description: Response @@ -104884,9 +105049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *262 - - *263 + - *264 - *265 + - *267 responses: '204': description: Response @@ -104923,11 +105088,11 @@ paths: application/json: schema: type: array - items: *689 + items: *691 examples: - default: *701 + default: *703 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105036,9 +105201,9 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default: &708 + default: &710 summary: Default response value: - id: 1296269 @@ -105159,7 +105324,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -105342,9 +105507,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *347 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105383,11 +105548,11 @@ paths: application/json: schema: type: array - items: *544 + items: *546 examples: - default: *702 + default: *704 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105408,7 +105573,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *238 + - *240 responses: '204': description: Response @@ -105432,7 +105597,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *238 + - *240 responses: '204': description: Response @@ -105465,7 +105630,7 @@ paths: application/json: schema: type: array - items: &703 + items: &705 title: Social account description: Social media account type: object @@ -105480,12 +105645,12 @@ paths: - provider - url examples: - default: &704 + default: &706 value: - provider: twitter url: https://twitter.com/github headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105542,9 +105707,9 @@ paths: application/json: schema: type: array - items: *703 + items: *705 examples: - default: *704 + default: *706 '422': *15 '304': *37 '404': *6 @@ -105631,7 +105796,7 @@ paths: application/json: schema: type: array - items: &705 + items: &707 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105651,7 +105816,7 @@ paths: - title - created_at examples: - default: &737 + default: &739 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105662,7 +105827,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -105715,9 +105880,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: &706 + default: &708 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105747,7 +105912,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: - - &707 + - &709 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105759,9 +105924,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: *706 + default: *708 '404': *6 '304': *37 '403': *29 @@ -105784,7 +105949,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: - - *707 + - *709 responses: '204': description: Response @@ -105813,7 +105978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &738 + - &740 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 @@ -105836,13 +106001,13 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default-response: *708 + default-response: *710 application/vnd.github.v3.star+json: schema: type: array - items: &739 + items: &741 title: Starred Repository description: Starred Repository type: object @@ -105850,7 +106015,7 @@ paths: starred_at: type: string format: date-time - repo: *80 + repo: *82 required: - starred_at - repo @@ -105978,7 +106143,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -105998,8 +106163,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: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response if this repository is starred by you @@ -106027,8 +106192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -106052,8 +106217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *342 - - *343 + - *344 + - *345 responses: '204': description: Response @@ -106086,11 +106251,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -106125,7 +106290,7 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: default: value: @@ -106176,7 +106341,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106203,7 +106368,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *106 + - *108 responses: '200': description: Response @@ -106211,10 +106376,10 @@ paths: application/json: schema: oneOf: - - *683 - - *709 + - *685 + - *711 examples: - default-response: &713 + default-response: &715 summary: Default response value: login: octocat @@ -106249,7 +106414,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &714 + response-with-git-hub-plan-information: &716 summary: Response with GitHub plan information value: login: octocat @@ -106306,14 +106471,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &711 + - &713 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *278 + - *280 requestBody: required: true description: Details of the draft item to create in the project. @@ -106347,9 +106512,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: - draft_issue: *285 + draft_issue: *287 '304': *37 '403': *29 '401': *25 @@ -106372,7 +106537,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *710 + - *712 - *17 responses: '200': @@ -106383,7 +106548,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: Link: example: ; rel="next" @@ -106407,8 +106572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *711 - - *278 + - *713 + - *280 requestBody: required: true content: @@ -106479,17 +106644,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *712 + schema: *714 examples: table_view: summary: Response for creating a table view - value: *289 + value: *291 board_view: summary: Response for creating a board view with filter - value: *289 + value: *291 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *291 '304': *37 '403': *29 '401': *25 @@ -106523,7 +106688,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *72 + - *74 responses: '200': description: Response @@ -106531,11 +106696,11 @@ paths: application/json: schema: oneOf: - - *683 - - *709 + - *685 + - *711 examples: - default-response: *713 - response-with-git-hub-plan-information: *714 + default-response: *715 + response-with-git-hub-plan-information: *716 '404': *6 x-github: githubCloudOnly: false @@ -106561,7 +106726,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 requestBody: required: true content: @@ -106585,8 +106750,8 @@ paths: required: - subject_digests examples: - default: *715 - withPredicateType: *716 + default: *717 + withPredicateType: *718 responses: '200': description: Response @@ -106625,7 +106790,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *717 + default: *719 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106643,7 +106808,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *72 + - *74 requestBody: required: true content: @@ -106708,7 +106873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -106739,7 +106904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *72 + - *74 - name: attestation_id description: Attestation ID in: path @@ -106777,7 +106942,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -106814,12 +106979,12 @@ paths: initiator: type: string examples: - default: *403 + default: *405 '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -106845,7 +107010,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: - - *72 + - *74 responses: '200': description: Response @@ -106853,9 +107018,9 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *699 + default: *701 '403': *29 '401': *25 x-github: @@ -106878,7 +107043,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -106888,7 +107053,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -106950,8 +107115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *72 - - *76 + - *74 + - *78 - *17 - *19 responses: @@ -106961,7 +107126,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -107038,7 +107203,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107048,7 +107213,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -107106,7 +107271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107118,9 +107283,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107137,7 +107302,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107149,9 +107314,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107168,7 +107333,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *72 + - *74 - name: target_user in: path required: true @@ -107195,8 +107360,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *72 - - *93 + - *74 + - *95 - *17 - *19 responses: @@ -107206,11 +107371,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -107229,7 +107394,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107239,11 +107404,11 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: - default: *718 + default: *720 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107265,7 +107430,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *72 + - *74 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -107337,7 +107502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *72 + - *74 responses: '200': description: Response @@ -107345,7 +107510,7 @@ paths: application/json: schema: *22 examples: - default: *541 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107363,7 +107528,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107398,7 +107563,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107418,7 +107583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -107428,11 +107593,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107469,8 +107634,8 @@ paths: - docker - nuget - container - - *698 - - *72 + - *700 + - *74 - *19 - *17 responses: @@ -107480,12 +107645,12 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: - default: *699 + default: *701 '403': *29 '401': *25 - '400': *700 + '400': *702 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107505,17 +107670,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '200': description: Response content: application/json: - schema: *260 + schema: *262 examples: - default: *719 + default: *721 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107536,9 +107701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '204': description: Response @@ -107570,9 +107735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 - name: token description: package token schema: @@ -107604,9 +107769,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: - - *262 - - *263 - - *72 + - *264 + - *265 + - *74 responses: '200': description: Response @@ -107614,7 +107779,7 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: default: value: @@ -107672,16 +107837,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *262 - - *263 + - *264 - *265 - - *72 + - *267 + - *74 responses: '200': description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -107716,10 +107881,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 - *265 + - *74 + - *267 responses: '204': description: Response @@ -107751,10 +107916,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *262 - - *263 - - *72 + - *264 - *265 + - *74 + - *267 responses: '204': description: Response @@ -107778,7 +107943,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *72 + - *74 - name: q description: Limit results to projects of the specified type. in: query @@ -107795,11 +107960,11 @@ paths: application/json: schema: type: array - items: *276 + items: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -107819,18 +107984,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *278 - - *72 + - *280 + - *74 responses: '200': description: Response content: application/json: - schema: *276 + schema: *278 examples: - default: *277 + default: *279 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -107850,8 +108015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *278 - - *72 + - *280 + - *74 - *17 - *47 - *48 @@ -107862,11 +108027,11 @@ paths: application/json: schema: type: array - items: *282 + items: *284 examples: - default: *720 + default: *722 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -107885,8 +108050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *72 - - *278 + - *74 + - *280 requestBody: required: true content: @@ -107924,7 +108089,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *721 + items: *723 required: - name - data_type @@ -107940,7 +108105,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *722 + iteration_configuration: *724 required: - name - data_type @@ -107962,20 +108127,20 @@ paths: value: name: Due date data_type: date - single_select_field: *723 - iteration_field: *724 + single_select_field: *725 + iteration_field: *726 responses: '201': description: Response content: application/json: - schema: *282 + schema: *284 examples: - text_field: *725 - number_field: *726 - date_field: *727 - single_select_field: *728 - iteration_field: *729 + text_field: *727 + number_field: *728 + date_field: *729 + single_select_field: *730 + iteration_field: *731 '304': *37 '403': *29 '401': *25 @@ -107996,19 +108161,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *278 - - *730 - - *72 + - *280 + - *732 + - *74 responses: '200': description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: *731 + default: *733 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108029,8 +108194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *278 - - *72 + - *280 + - *74 - *47 - *48 - *17 @@ -108062,11 +108227,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108085,8 +108250,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *72 - - *278 + - *74 + - *280 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -108156,22 +108321,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *287 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *287 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *287 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *287 '304': *37 '403': *29 '401': *25 @@ -108191,9 +108356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -108213,11 +108378,11 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108236,9 +108401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -108308,13 +108473,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *289 + number_field: *289 + date_field: *289 + single_select_field: *289 + iteration_field: *289 '401': *25 '403': *29 '404': *6 @@ -108334,9 +108499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *278 - - *72 - - *288 + - *280 + - *74 + - *290 responses: '204': description: Response @@ -108358,9 +108523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *278 - - *72 - - *732 + - *280 + - *74 + - *734 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -108386,11 +108551,11 @@ paths: application/json: schema: type: array - items: *286 + items: *288 examples: - default: *287 + default: *289 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -108416,7 +108581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108426,7 +108591,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108491,7 +108656,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108501,7 +108666,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108564,7 +108729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *72 + - *74 - name: type description: Limit results to repositories of the specified type. in: query @@ -108607,11 +108772,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108631,12 +108796,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *733 + - *126 - *125 + - *735 + - *127 responses: '200': description: Response when getting a billing premium request usage report @@ -108744,7 +108909,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108764,10 +108929,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *72 - - *122 - - *734 - - *123 + - *74 + - *124 + - *736 + - *125 responses: '200': description: Response when getting a billing usage report @@ -108838,7 +109003,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108861,13 +109026,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *735 + - *126 - *125 - - *736 + - *737 + - *127 + - *738 responses: '200': description: Response when getting a billing usage summary @@ -108973,7 +109138,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108991,7 +109156,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109001,11 +109166,11 @@ paths: application/json: schema: type: array - items: *703 + items: *705 examples: - default: *704 + default: *706 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109023,7 +109188,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109033,11 +109198,11 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: - default: *737 + default: *739 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109059,8 +109224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *72 - - *738 + - *74 + - *740 - *62 - *17 - *19 @@ -109072,13 +109237,13 @@ paths: schema: anyOf: - type: array - items: *739 + items: *741 - type: array - items: *80 + items: *82 examples: - default-response: *708 + default-response: *710 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109095,7 +109260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109105,11 +109270,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *273 + default: *275 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109235,7 +109400,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &740 + enterprise: &742 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109293,7 +109458,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &741 + installation: &743 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109312,7 +109477,7 @@ x-webhooks: required: - id - node_id - organization: &742 + organization: &744 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109372,13 +109537,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &743 + repository: &745 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: &775 + properties: &777 id: description: Unique identifier of the repository example: 42 @@ -109398,8 +109563,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -110062,7 +110227,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &776 + required: &778 - archive_url - assignees_url - blobs_url @@ -110213,10 +110378,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -110292,11 +110457,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: &744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: &746 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) @@ -110519,11 +110684,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: *744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: *746 sender: *4 required: - action @@ -110706,11 +110871,11 @@ x-webhooks: - everyone required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - rule: *744 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + rule: *746 sender: *4 required: - action @@ -110794,7 +110959,7 @@ x-webhooks: type: string enum: - completed - check_run: &746 + check_run: &748 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110847,8 +111012,8 @@ x-webhooks: type: string pull_requests: type: array - items: *91 - repository: *159 + items: *93 + repository: *161 status: example: completed type: string @@ -110885,7 +111050,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *745 + deployment: *747 details_url: example: https://example.com type: string @@ -110935,7 +111100,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *91 + items: *93 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -110970,10 +111135,10 @@ x-webhooks: - output - app - pull_requests - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -111364,11 +111529,11 @@ x-webhooks: type: string enum: - created - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -111762,11 +111927,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 requested_action: description: The action requested by the user. type: object @@ -112169,11 +112334,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *746 - installation: *741 - enterprise: *740 - organization: *742 - repository: *743 + check_run: *748 + installation: *743 + enterprise: *742 + organization: *744 + repository: *745 sender: *4 required: - check_run @@ -113143,10 +113308,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -113835,10 +114000,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -114521,10 +114686,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -114690,7 +114855,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114835,20 +115000,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &747 + commit_oid: &749 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: *740 - installation: *741 - organization: *742 - ref: &748 + enterprise: *742 + installation: *743 + organization: *744 + ref: &750 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: *743 + repository: *745 sender: *4 required: - action @@ -115013,7 +115178,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115243,12 +115408,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -115343,7 +115508,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115514,12 +115679,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -115685,7 +115850,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115851,12 +116016,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -115955,7 +116120,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116130,16 +116295,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 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: *743 + repository: *745 sender: *4 required: - action @@ -116236,7 +116401,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116376,12 +116541,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *747 - enterprise: *740 - installation: *741 - organization: *742 - ref: *748 - repository: *743 + commit_oid: *749 + enterprise: *742 + installation: *743 + organization: *744 + ref: *750 + repository: *745 sender: *4 required: - action @@ -116547,7 +116712,7 @@ x-webhooks: required: - login - id - dismissed_comment: *435 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116692,10 +116857,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -116950,10 +117115,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -117033,18 +117198,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *742 - pusher_type: &749 + organization: *744 + pusher_type: &751 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &750 + ref: &752 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -117054,7 +117219,7 @@ x-webhooks: enum: - tag - branch - repository: *743 + repository: *745 sender: *4 required: - ref @@ -117136,10 +117301,10 @@ x-webhooks: type: string enum: - created - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117224,9 +117389,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117303,10 +117468,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117383,10 +117548,10 @@ x-webhooks: type: string enum: - updated - definition: *290 - enterprise: *740 - installation: *741 - organization: *742 + definition: *292 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -117463,19 +117628,19 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - repository: *743 - organization: *742 + enterprise: *742 + installation: *743 + repository: *745 + organization: *744 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *294 + items: *296 old_property_values: type: array description: The old custom property values for the repository. - items: *294 + items: *296 required: - action - repository @@ -117551,18 +117716,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - pusher_type: *749 - ref: *750 + enterprise: *742 + installation: *743 + organization: *744 + pusher_type: *751 + ref: *752 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *743 + repository: *745 sender: *4 required: - ref @@ -117642,11 +117807,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -117726,11 +117891,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -117811,11 +117976,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -117896,11 +118061,11 @@ x-webhooks: type: string enum: - created - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -117979,11 +118144,11 @@ x-webhooks: type: string enum: - dismissed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118062,11 +118227,11 @@ x-webhooks: type: string enum: - fixed - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118146,11 +118311,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118229,11 +118394,11 @@ x-webhooks: type: string enum: - reopened - alert: *499 - installation: *741 - organization: *742 - enterprise: *740 - repository: *743 + alert: *501 + installation: *743 + organization: *744 + enterprise: *742 + repository: *745 sender: *4 required: - action @@ -118310,9 +118475,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - key: &751 + enterprise: *742 + installation: *743 + key: &753 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -118348,8 +118513,8 @@ x-webhooks: - verified - created_at - read_only - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -118426,11 +118591,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - key: *751 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + key: *753 + organization: *744 + repository: *745 sender: *4 required: - action @@ -118986,12 +119151,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: &757 + workflow: &759 title: Workflow type: object nullable: true @@ -119732,15 +119897,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *752 - required: *753 + properties: *754 + required: *755 nullable: true pull_requests: type: array - items: *596 - repository: *743 - organization: *742 - installation: *741 + items: *598 + repository: *745 + organization: *744 + installation: *743 sender: *4 responses: '200': @@ -119811,7 +119976,7 @@ x-webhooks: type: string enum: - approved - approver: &754 + approver: &756 type: object properties: avatar_url: @@ -119854,11 +120019,11 @@ x-webhooks: type: string comment: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - reviewers: &755 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + reviewers: &757 type: array items: type: object @@ -119937,7 +120102,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &756 + workflow_job_run: &758 type: object properties: conclusion: @@ -120668,18 +120833,18 @@ x-webhooks: type: string enum: - rejected - approver: *754 + approver: *756 comment: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - reviewers: *755 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + reviewers: *757 sender: *4 since: type: string - workflow_job_run: *756 + workflow_job_run: *758 workflow_job_runs: type: array items: @@ -121383,13 +121548,13 @@ x-webhooks: type: string enum: - requested - enterprise: *740 + enterprise: *742 environment: type: string - installation: *741 - organization: *742 - repository: *743 - requestor: &762 + installation: *743 + organization: *744 + repository: *745 + requestor: &764 title: User type: object nullable: true @@ -123278,12 +123443,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Deployment Workflow Run type: object @@ -123963,7 +124128,7 @@ x-webhooks: type: string enum: - answered - answer: &760 + answer: &762 type: object properties: author_association: @@ -124120,11 +124285,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124251,11 +124416,11 @@ x-webhooks: - from required: - category - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124338,11 +124503,11 @@ x-webhooks: type: string enum: - closed - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124424,7 +124589,7 @@ x-webhooks: type: string enum: - created - comment: &759 + comment: &761 type: object properties: author_association: @@ -124581,11 +124746,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124668,12 +124833,12 @@ x-webhooks: type: string enum: - deleted - comment: *759 - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + comment: *761 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124768,12 +124933,12 @@ x-webhooks: - from required: - body - comment: *759 - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + comment: *761 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124857,11 +125022,11 @@ x-webhooks: type: string enum: - created - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -124943,11 +125108,11 @@ x-webhooks: type: string enum: - deleted - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125047,11 +125212,11 @@ x-webhooks: type: string required: - from - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125133,10 +125298,10 @@ x-webhooks: type: string enum: - labeled - discussion: *758 - enterprise: *740 - installation: *741 - label: &761 + discussion: *760 + enterprise: *742 + installation: *743 + label: &763 title: Label type: object properties: @@ -125168,8 +125333,8 @@ x-webhooks: - color - default - description - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125252,11 +125417,11 @@ x-webhooks: type: string enum: - locked - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125338,11 +125503,11 @@ x-webhooks: type: string enum: - pinned - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125424,11 +125589,11 @@ x-webhooks: type: string enum: - reopened - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125513,16 +125678,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *758 - new_repository: *743 + new_discussion: *760 + new_repository: *745 required: - new_discussion - new_repository - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125605,10 +125770,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *758 - old_answer: *760 - organization: *742 - repository: *743 + discussion: *760 + old_answer: *762 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125690,12 +125855,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *758 - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125778,11 +125943,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125864,11 +126029,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *758 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + discussion: *760 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -125941,7 +126106,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *740 + enterprise: *742 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126601,9 +126766,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *741 - organization: *742 - repository: *743 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - forkee @@ -126749,9 +126914,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pages: description: The pages that were updated. type: array @@ -126788,7 +126953,7 @@ x-webhooks: - action - sha - html_url - repository: *743 + repository: *745 sender: *4 required: - pages @@ -126864,10 +127029,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: &763 + organization: *744 + repositories: &765 description: An array of repository objects that the installation can access. type: array @@ -126893,8 +127058,8 @@ x-webhooks: - name - full_name - private - repository: *743 - requester: *762 + repository: *745 + requester: *764 sender: *4 required: - action @@ -126969,11 +127134,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127049,11 +127214,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127129,10 +127294,10 @@ x-webhooks: type: string enum: - added - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories_added: &764 + organization: *744 + repositories_added: &766 description: An array of repository objects, which were added to the installation. type: array @@ -127178,15 +127343,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *743 - repository_selection: &765 + repository: *745 + repository_selection: &767 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *762 + requester: *764 sender: *4 required: - action @@ -127265,10 +127430,10 @@ x-webhooks: type: string enum: - removed - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories_added: *764 + organization: *744 + repositories_added: *766 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -127295,9 +127460,9 @@ x-webhooks: - name - full_name - private - repository: *743 - repository_selection: *765 - requester: *762 + repository: *745 + repository_selection: *767 + requester: *764 sender: *4 required: - action @@ -127376,11 +127541,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127558,10 +127723,10 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 target_type: type: string @@ -127640,11 +127805,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *740 + enterprise: *742 installation: *22 - organization: *742 - repositories: *763 - repository: *743 + organization: *744 + repositories: *765 + repository: *745 requester: nullable: true sender: *4 @@ -127768,8 +127933,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 reactions: title: Reactions type: object @@ -127818,8 +127983,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true user: title: User @@ -127904,8 +128069,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128694,8 +128859,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128711,7 +128876,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -129044,8 +129209,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -129125,7 +129290,7 @@ x-webhooks: type: string enum: - deleted - comment: &766 + comment: &768 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -129282,8 +129447,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *573 - required: *574 + properties: *575 + required: *576 nullable: true required: - url @@ -129298,8 +129463,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130084,8 +130249,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130101,7 +130266,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -130436,8 +130601,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -130517,7 +130682,7 @@ x-webhooks: type: string enum: - edited - changes: &795 + changes: &797 description: The changes to the comment. type: object properties: @@ -130529,9 +130694,9 @@ x-webhooks: type: string required: - from - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131319,8 +131484,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131336,7 +131501,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -131669,8 +131834,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -131751,9 +131916,9 @@ x-webhooks: type: string enum: - pinned - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132543,8 +132708,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132560,7 +132725,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -132895,8 +133060,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -132976,9 +133141,9 @@ x-webhooks: type: string enum: - unpinned - comment: *766 - enterprise: *740 - installation: *741 + comment: *768 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133768,8 +133933,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133785,7 +133950,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -134120,8 +134285,8 @@ x-webhooks: - state - locked - assignee - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134204,15 +134369,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134295,15 +134460,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134385,15 +134550,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134476,15 +134641,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *741 - organization: *742 - repository: *743 + blocking_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -134564,10 +134729,10 @@ x-webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *740 - installation: *741 - issue: &769 + assignee: *764 + enterprise: *742 + installation: *743 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135356,14 +135521,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135379,7 +135544,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -135480,8 +135645,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -135561,8 +135726,8 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136356,14 +136521,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136379,7 +136544,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -136615,8 +136780,8 @@ x-webhooks: required: - state - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -136695,8 +136860,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137481,14 +137646,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137504,7 +137669,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -137604,8 +137769,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -137684,8 +137849,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138492,14 +138657,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138515,7 +138680,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -138594,7 +138759,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &767 + milestone: &769 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138732,8 +138897,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -138832,8 +138997,8 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139622,14 +139787,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139642,7 +139807,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -139746,9 +139911,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *742 - repository: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -139828,8 +139993,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140617,14 +140782,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140637,7 +140802,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -140741,9 +140906,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *742 - repository: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -140823,8 +140988,8 @@ x-webhooks: type: string enum: - locked - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141636,14 +141801,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141656,7 +141821,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *244 title: description: Title of the issue type: string @@ -141737,8 +141902,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -141817,8 +141982,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142624,14 +142789,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142647,7 +142812,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -142725,9 +142890,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *767 - organization: *742 - repository: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -143590,11 +143755,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143622,8 +143787,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -143695,7 +143860,7 @@ x-webhooks: required: - login - id - type: *242 + type: *244 required: - id - number @@ -144175,8 +144340,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144960,11 +145125,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144980,7 +145145,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -144993,8 +145158,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -145088,8 +145253,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -145169,9 +145334,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *740 - installation: *741 - issue: &768 + enterprise: *742 + installation: *743 + issue: &770 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145954,14 +146119,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145977,7 +146142,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -146077,8 +146242,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -146157,8 +146322,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146968,14 +147133,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147069,9 +147234,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *242 - organization: *742 - repository: *743 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -147937,14 +148102,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147960,7 +148125,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -148539,11 +148704,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *740 - installation: *741 - issue: *768 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *770 + organization: *744 + repository: *745 sender: *4 required: - action @@ -148623,12 +148788,12 @@ x-webhooks: type: string enum: - typed - enterprise: *740 - installation: *741 - issue: *769 - type: *242 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -148709,7 +148874,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &798 + assignee: &800 title: User type: object nullable: true @@ -148779,11 +148944,11 @@ x-webhooks: required: - login - id - enterprise: *740 - installation: *741 - issue: *769 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + organization: *744 + repository: *745 sender: *4 required: - action @@ -148862,12 +149027,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *740 - installation: *741 - issue: *769 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -148947,8 +149112,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149758,14 +149923,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *676 - issue_dependencies_summary: *677 + sub_issues_summary: *678 + issue_dependencies_summary: *679 issue_field_values: type: array - items: *557 + items: *559 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149781,7 +149946,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *244 updated_at: type: string format: date-time @@ -149859,8 +150024,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -149940,11 +150105,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *740 - installation: *741 - issue: *768 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *770 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150023,12 +150188,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *740 - installation: *741 - issue: *769 - type: *242 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + issue: *771 + type: *244 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150108,11 +150273,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150190,11 +150355,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150304,11 +150469,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - label: *761 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + label: *763 + organization: *744 + repository: *745 sender: *4 required: - action @@ -150390,9 +150555,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: &770 + enterprise: *742 + installation: *743 + marketplace_purchase: &772 title: Marketplace Purchase type: object required: @@ -150475,8 +150640,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *742 - previous_marketplace_purchase: &771 + organization: *744 + previous_marketplace_purchase: &773 title: Marketplace Purchase type: object properties: @@ -150556,7 +150721,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -150636,10 +150801,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150722,7 +150887,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -150804,10 +150969,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150889,7 +151054,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *743 + repository: *745 sender: *4 required: - action @@ -150970,8 +151135,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 marketplace_purchase: title: Marketplace Purchase type: object @@ -151053,9 +151218,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *742 - previous_marketplace_purchase: *771 - repository: *743 + organization: *744 + previous_marketplace_purchase: *773 + repository: *745 sender: *4 required: - action @@ -151135,12 +151300,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *740 - installation: *741 - marketplace_purchase: *770 - organization: *742 - previous_marketplace_purchase: *771 - repository: *743 + enterprise: *742 + installation: *743 + marketplace_purchase: *772 + organization: *744 + previous_marketplace_purchase: *773 + repository: *745 sender: *4 required: - action @@ -151242,11 +151407,11 @@ x-webhooks: type: string required: - to - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151346,11 +151511,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151429,11 +151594,11 @@ x-webhooks: type: string enum: - removed - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 sender: *4 required: - action @@ -151511,11 +151676,11 @@ x-webhooks: type: string enum: - added - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151591,7 +151756,7 @@ x-webhooks: required: - login - id - team: &772 + team: &774 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151814,11 +151979,11 @@ x-webhooks: type: string enum: - removed - enterprise: *740 - installation: *741 - member: *762 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + member: *764 + organization: *744 + repository: *745 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151895,7 +152060,7 @@ x-webhooks: required: - login - id - team: *772 + team: *774 required: - action - scope @@ -151977,8 +152142,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *741 - merge_group: &774 + installation: *743 + merge_group: &776 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -151997,15 +152162,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *773 + head_commit: *775 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152091,10 +152256,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *741 - merge_group: *774 - organization: *742 - repository: *743 + installation: *743 + merge_group: *776 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152167,7 +152332,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 + enterprise: *742 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -152276,16 +152441,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *741 - organization: *742 + installation: *743 + organization: *744 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -152366,11 +152531,11 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152449,9 +152614,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - milestone: &777 + enterprise: *742 + installation: *743 + milestone: &779 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152588,8 +152753,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152668,11 +152833,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152782,11 +152947,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - milestone: *767 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *769 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152866,11 +153031,11 @@ x-webhooks: type: string enum: - opened - enterprise: *740 - installation: *741 - milestone: *777 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + milestone: *779 + organization: *744 + repository: *745 sender: *4 required: - action @@ -152949,11 +153114,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *762 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + blocked_user: *764 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153032,11 +153197,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *762 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + blocked_user: *764 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153115,9 +153280,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - membership: &778 + enterprise: *742 + installation: *743 + membership: &780 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -153224,8 +153389,8 @@ x-webhooks: - role - organization_url - user - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153303,11 +153468,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153386,8 +153551,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153503,10 +153668,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 - user: *762 + user: *764 required: - action - invitation @@ -153584,11 +153749,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153675,11 +153840,11 @@ x-webhooks: properties: from: type: string - enterprise: *740 - installation: *741 - membership: *778 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + membership: *780 + organization: *744 + repository: *745 sender: *4 required: - action @@ -153756,9 +153921,9 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 package: description: Information about the package. type: object @@ -154257,7 +154422,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &779 + items: &781 title: Ruby Gems metadata type: object properties: @@ -154352,7 +154517,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -154428,9 +154593,9 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 package: description: Information about the package. type: object @@ -154783,7 +154948,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *779 + items: *781 source_url: type: string format: uri @@ -154853,7 +155018,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -155029,12 +155194,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *740 + enterprise: *742 id: type: integer - installation: *741 - organization: *742 - repository: *743 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - id @@ -155111,7 +155276,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &780 + personal_access_token_request: &782 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -155257,10 +155422,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *740 - organization: *742 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155337,11 +155502,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *780 - enterprise: *740 - organization: *742 + personal_access_token_request: *782 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155417,11 +155582,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *780 - enterprise: *740 - organization: *742 + personal_access_token_request: *782 + enterprise: *742 + organization: *744 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155496,11 +155661,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *780 - organization: *742 - enterprise: *740 + personal_access_token_request: *782 + organization: *744 + enterprise: *742 sender: *4 - installation: *741 + installation: *743 required: - action - personal_access_token_request @@ -155605,7 +155770,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *781 + last_response: *783 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155637,8 +155802,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 zen: description: Random string of GitHub zen. @@ -155883,10 +156048,10 @@ x-webhooks: - from required: - note - enterprise: *740 - installation: *741 - organization: *742 - project_card: &782 + enterprise: *742 + installation: *743 + organization: *744 + project_card: &784 title: Project Card type: object properties: @@ -156005,7 +156170,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -156086,11 +156251,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project_card: *782 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_card: *784 + repository: *745 sender: *4 required: - action @@ -156170,9 +156335,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 project_card: title: Project Card type: object @@ -156300,8 +156465,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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -156395,11 +156560,11 @@ x-webhooks: - from required: - note - enterprise: *740 - installation: *741 - organization: *742 - project_card: *782 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_card: *784 + repository: *745 sender: *4 required: - action @@ -156493,9 +156658,9 @@ x-webhooks: - from required: - column_id - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 project_card: allOf: - title: Project Card @@ -156685,7 +156850,7 @@ x-webhooks: type: string required: - after_id - repository: *743 + repository: *745 sender: *4 required: - action @@ -156765,10 +156930,10 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - organization: *742 - project: &784 + enterprise: *742 + installation: *743 + organization: *744 + project: &786 title: Project type: object properties: @@ -156892,7 +157057,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -156972,10 +157137,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project_column: &783 + enterprise: *742 + installation: *743 + organization: *744 + project_column: &785 title: Project Column type: object properties: @@ -157014,7 +157179,7 @@ x-webhooks: - name - created_at - updated_at - repository: *743 + repository: *745 sender: *4 required: - action @@ -157093,18 +157258,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -157194,11 +157359,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 + repository: *745 sender: *4 required: - action @@ -157278,11 +157443,11 @@ x-webhooks: type: string enum: - moved - enterprise: *740 - installation: *741 - organization: *742 - project_column: *783 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project_column: *785 + repository: *745 sender: *4 required: - action @@ -157362,11 +157527,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -157446,18 +157611,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - project: *784 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 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: *775 - required: *776 + properties: *777 + required: *778 nullable: true sender: *4 required: @@ -157559,11 +157724,11 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -157642,11 +157807,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 - organization: *742 - project: *784 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + project: *786 + repository: *745 sender: *4 required: - action @@ -157727,9 +157892,9 @@ x-webhooks: type: string enum: - closed - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -157810,9 +157975,9 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -157893,9 +158058,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158012,9 +158177,9 @@ x-webhooks: type: string to: type: string - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158097,7 +158262,7 @@ x-webhooks: type: string enum: - archived - changes: &788 + changes: &790 type: object properties: archived_at: @@ -158111,9 +158276,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *741 - organization: *742 - projects_v2_item: &785 + installation: *743 + organization: *744 + projects_v2_item: &787 title: Projects v2 Item description: An item belonging to a project type: object @@ -158131,7 +158296,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *283 + content_type: *285 creator: *4 created_at: type: string @@ -158248,9 +158413,9 @@ x-webhooks: nullable: true to: type: string - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158332,9 +158497,9 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158415,9 +158580,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158523,7 +158688,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &786 + - &788 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158545,7 +158710,7 @@ x-webhooks: required: - id - name - - &787 + - &789 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158579,8 +158744,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *786 - - *787 + - *788 + - *789 required: - field_value - type: object @@ -158596,9 +158761,9 @@ x-webhooks: nullable: true required: - body - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158693,9 +158858,9 @@ x-webhooks: to: type: string nullable: true - installation: *741 - organization: *742 - projects_v2_item: *785 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158778,10 +158943,10 @@ x-webhooks: type: string enum: - restored - changes: *788 - installation: *741 - organization: *742 - projects_v2_item: *785 + changes: *790 + installation: *743 + organization: *744 + projects_v2_item: *787 sender: *4 required: - action @@ -158863,9 +159028,9 @@ x-webhooks: type: string enum: - reopened - installation: *741 - organization: *742 - projects_v2: *276 + installation: *743 + organization: *744 + projects_v2: *278 sender: *4 required: - action @@ -158946,14 +159111,14 @@ x-webhooks: type: string enum: - created - installation: *741 - organization: *742 - projects_v2_status_update: &791 + installation: *743 + organization: *744 + projects_v2_status_update: &793 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *789 - required: *790 + properties: *791 + required: *792 sender: *4 required: - action @@ -159034,9 +159199,9 @@ x-webhooks: type: string enum: - deleted - installation: *741 - organization: *742 - projects_v2_status_update: *791 + installation: *743 + organization: *744 + projects_v2_status_update: *793 sender: *4 required: - action @@ -159172,9 +159337,9 @@ x-webhooks: type: string format: date nullable: true - installation: *741 - organization: *742 - projects_v2_status_update: *791 + installation: *743 + organization: *744 + projects_v2_status_update: *793 sender: *4 required: - action @@ -159245,10 +159410,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - repository @@ -159325,13 +159490,13 @@ x-webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *740 - installation: *741 - number: &792 + assignee: *764 + enterprise: *742 + installation: *743 + number: &794 description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -161618,7 +161783,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -161700,11 +161865,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -163986,7 +164151,7 @@ x-webhooks: - draft reason: type: string - repository: *743 + repository: *745 sender: *4 required: - action @@ -164068,11 +164233,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -166354,7 +166519,7 @@ x-webhooks: - draft reason: type: string - repository: *743 + repository: *745 sender: *4 required: - action @@ -166436,13 +166601,13 @@ x-webhooks: type: string enum: - closed - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: &793 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: &795 allOf: - - *596 + - *598 - type: object properties: allow_auto_merge: @@ -166504,7 +166669,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *743 + repository: *745 sender: *4 required: - action @@ -166585,12 +166750,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -166670,11 +166835,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *740 - milestone: *580 - number: *792 - organization: *742 - pull_request: &794 + enterprise: *742 + milestone: *582 + number: *794 + organization: *744 + pull_request: &796 title: Pull Request type: object properties: @@ -168955,7 +169120,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -169034,11 +169199,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -171338,7 +171503,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *743 + repository: *745 sender: *4 required: - action @@ -171462,12 +171627,12 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -171547,11 +171712,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -173836,7 +174001,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -173916,11 +174081,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *740 - installation: *741 - label: *761 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + label: *763 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -176206,7 +176371,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -176287,10 +176452,10 @@ x-webhooks: type: string enum: - locked - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -178574,7 +178739,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -178654,12 +178819,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *740 - milestone: *580 - number: *792 - organization: *742 - pull_request: *794 - repository: *743 + enterprise: *742 + milestone: *582 + number: *794 + organization: *744 + pull_request: *796 + repository: *745 sender: *4 required: - action @@ -178738,12 +178903,12 @@ x-webhooks: type: string enum: - opened - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -178824,12 +178989,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -178909,12 +179074,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *740 - installation: *741 - number: *792 - organization: *742 - pull_request: *793 - repository: *743 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 + pull_request: *795 + repository: *745 sender: *4 required: - action @@ -179280,9 +179445,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -181456,7 +181621,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -181536,7 +181701,7 @@ x-webhooks: type: string enum: - deleted - comment: &796 + comment: &798 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -181821,9 +181986,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -183985,7 +184150,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -184065,11 +184230,11 @@ x-webhooks: type: string enum: - edited - changes: *795 - comment: *796 - enterprise: *740 - installation: *741 - organization: *742 + changes: *797 + comment: *798 + enterprise: *742 + installation: *743 + organization: *744 pull_request: type: object properties: @@ -186234,7 +186399,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *743 + repository: *745 sender: *4 required: - action @@ -186315,9 +186480,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -188494,7 +188659,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 review: description: The review that was affected. type: object @@ -188741,9 +188906,9 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -190793,8 +190958,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 - review: &797 + repository: *745 + review: &799 description: The review that was affected. type: object properties: @@ -191027,12 +191192,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -193319,7 +193484,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_reviewer: title: User type: object @@ -193403,12 +193568,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -195702,7 +195867,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_team: title: Team description: Groups of organization members that gives permissions @@ -195894,12 +196059,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -198188,7 +198353,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_reviewer: title: User type: object @@ -198273,12 +198438,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *740 - installation: *741 + enterprise: *742 + installation: *743 number: description: The pull request number. type: integer - organization: *742 + organization: *744 pull_request: title: Pull Request type: object @@ -200558,7 +200723,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 requested_team: title: Team description: Groups of organization members that gives permissions @@ -200739,9 +200904,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -202920,8 +203085,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 - review: *797 + repository: *745 + review: *799 sender: *4 required: - action @@ -203001,9 +203166,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -205091,7 +205256,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 sender: *4 thread: type: object @@ -205478,9 +205643,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 pull_request: title: Simple Pull Request type: object @@ -207554,7 +207719,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *743 + repository: *745 sender: *4 thread: type: object @@ -207944,10 +208109,10 @@ x-webhooks: type: string before: type: string - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -210222,7 +210387,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -210304,11 +210469,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *798 - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + assignee: *800 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -212595,7 +212760,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -212674,11 +212839,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *740 - installation: *741 - label: *761 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + label: *763 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -214955,7 +215120,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -215036,10 +215201,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *740 - installation: *741 - number: *792 - organization: *742 + enterprise: *742 + installation: *743 + number: *794 + organization: *744 pull_request: title: Pull Request type: object @@ -217308,7 +217473,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *743 + repository: *745 sender: *4 required: - action @@ -217508,7 +217673,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *740 + enterprise: *742 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -217600,8 +217765,8 @@ x-webhooks: - url - author - committer - installation: *741 - organization: *742 + installation: *743 + organization: *744 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -218187,9 +218352,9 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 registry_package: type: object properties: @@ -218635,7 +218800,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *779 + items: *781 summary: type: string tag_name: @@ -218689,7 +218854,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -218767,9 +218932,9 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 registry_package: type: object properties: @@ -219077,7 +219242,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *779 + items: *781 summary: type: string tag_name: @@ -219126,7 +219291,7 @@ x-webhooks: - owner - package_version - registry - repository: *743 + repository: *745 sender: *4 required: - action @@ -219203,10 +219368,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - release: &799 + enterprise: *742 + installation: *743 + organization: *744 + release: &801 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219524,7 +219689,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *743 + repository: *745 sender: *4 required: - action @@ -219601,11 +219766,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -219722,11 +219887,11 @@ x-webhooks: type: boolean required: - to - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -219804,9 +219969,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -220128,7 +220293,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *743 + repository: *745 sender: *4 required: - action @@ -220204,10 +220369,10 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - release: &800 + enterprise: *742 + installation: *743 + organization: *744 + release: &802 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -220526,7 +220691,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *743 + repository: *745 sender: *4 required: - action @@ -220602,11 +220767,11 @@ x-webhooks: type: string enum: - released - enterprise: *740 - installation: *741 - organization: *742 - release: *799 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *801 + repository: *745 sender: *4 required: - action @@ -220682,11 +220847,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *740 - installation: *741 - organization: *742 - release: *800 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + release: *802 + repository: *745 sender: *4 required: - action @@ -220762,11 +220927,11 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_advisory: *663 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_advisory: *665 sender: *4 required: - action @@ -220842,11 +221007,11 @@ x-webhooks: type: string enum: - reported - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_advisory: *663 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_advisory: *665 sender: *4 required: - action @@ -220922,10 +221087,10 @@ x-webhooks: type: string enum: - archived - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221002,10 +221167,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221083,10 +221248,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221170,10 +221335,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221285,10 +221450,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221360,10 +221525,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 status: type: string @@ -221444,10 +221609,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221524,10 +221689,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221621,10 +221786,10 @@ x-webhooks: - name required: - repository - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -221704,11 +221869,11 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 sender: *4 required: - action @@ -221786,11 +221951,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 sender: *4 required: - action @@ -221868,11 +222033,11 @@ x-webhooks: type: string enum: - edited - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - repository_ruleset: *324 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + repository_ruleset: *326 changes: type: object properties: @@ -221891,16 +222056,16 @@ x-webhooks: properties: added: type: array - items: *298 + items: *300 deleted: type: array - items: *298 + items: *300 updated: type: array items: type: object properties: - condition: *298 + condition: *300 changes: type: object properties: @@ -221933,16 +222098,16 @@ x-webhooks: properties: added: type: array - items: *616 + items: *618 deleted: type: array - items: *616 + items: *618 updated: type: array items: type: object properties: - rule: *616 + rule: *618 changes: type: object properties: @@ -222176,10 +222341,10 @@ x-webhooks: - from required: - owner - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222257,10 +222422,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222338,7 +222503,7 @@ x-webhooks: type: string enum: - create - alert: &801 + alert: &803 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -222460,10 +222625,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222669,10 +222834,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222750,11 +222915,11 @@ x-webhooks: type: string enum: - reopen - alert: *801 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *803 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -222953,10 +223118,10 @@ x-webhooks: enum: - fixed - open - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223034,11 +223199,11 @@ x-webhooks: type: string enum: - assigned - alert: &802 + alert: &804 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -223046,8 +223211,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri @@ -223177,10 +223342,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223258,11 +223423,11 @@ x-webhooks: type: string enum: - created - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223343,11 +223508,11 @@ x-webhooks: type: string enum: - created - alert: *802 - installation: *741 - location: *803 - organization: *742 - repository: *743 + alert: *804 + installation: *743 + location: *805 + organization: *744 + repository: *745 sender: *4 required: - location @@ -223585,11 +223750,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223667,11 +223832,11 @@ x-webhooks: type: string enum: - reopened - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223749,11 +223914,11 @@ x-webhooks: type: string enum: - resolved - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223831,12 +223996,12 @@ x-webhooks: type: string enum: - unassigned - alert: *802 + alert: *804 assignee: *4 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -223914,11 +224079,11 @@ x-webhooks: type: string enum: - validated - alert: *802 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + alert: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -224044,10 +224209,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *743 - enterprise: *740 - installation: *741 - organization: *742 + repository: *745 + enterprise: *742 + installation: *743 + organization: *744 sender: *4 required: - action @@ -224125,11 +224290,11 @@ x-webhooks: type: string enum: - published - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - security_advisory: &804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + security_advisory: &806 description: The details of the security advisory, including summary, description, and severity. type: object @@ -224300,11 +224465,11 @@ x-webhooks: type: string enum: - updated - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 - security_advisory: *804 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 + security_advisory: *806 sender: *4 required: - action @@ -224377,10 +224542,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -224552,11 +224717,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *740 - installation: *741 - organization: *742 - repository: *345 + security_and_analysis: *299 + enterprise: *742 + installation: *743 + organization: *744 + repository: *347 sender: *4 required: - changes @@ -224634,12 +224799,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: &805 + sponsorship: &807 type: object properties: created_at: @@ -224940,12 +225105,12 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - sponsorship @@ -225033,12 +225198,12 @@ x-webhooks: type: string required: - from - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -225115,17 +225280,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &806 + effective_date: &808 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: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - sponsorship @@ -225199,7 +225364,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &807 + changes: &809 type: object properties: tier: @@ -225243,13 +225408,13 @@ x-webhooks: - from required: - tier - effective_date: *806 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + effective_date: *808 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -225326,13 +225491,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *807 - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + changes: *809 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - sponsorship: *805 + sponsorship: *807 required: - action - changes @@ -225406,10 +225571,10 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225492,10 +225657,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225915,15 +226080,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *740 + enterprise: *742 id: description: The unique identifier of the status. type: integer - installation: *741 + installation: *743 name: type: string - organization: *742 - repository: *743 + organization: *744 + repository: *745 sender: *4 sha: description: The Commit SHA. @@ -226032,15 +226197,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *741 - organization: *742 - repository: *743 + sub_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -226124,15 +226289,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *741 - organization: *742 - repository: *743 + sub_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -226216,15 +226381,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *741 - organization: *742 - repository: *743 + parent_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -226308,15 +226473,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *741 - organization: *742 - repository: *743 + parent_issue: *88 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -226393,12 +226558,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - team: &808 + team: &810 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -226621,9 +226786,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -227081,7 +227246,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -227157,9 +227322,9 @@ x-webhooks: type: string enum: - created - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -227617,7 +227782,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -227694,9 +227859,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -228154,7 +228319,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -228298,9 +228463,9 @@ x-webhooks: - from required: - permissions - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -228758,7 +228923,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - changes @@ -228836,9 +229001,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *740 - installation: *741 - organization: *742 + enterprise: *742 + installation: *743 + organization: *744 repository: title: Repository description: A git repository @@ -229296,7 +229461,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *808 + team: *810 required: - action - team @@ -229372,10 +229537,10 @@ x-webhooks: type: string enum: - started - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 required: - action @@ -229448,16 +229613,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *740 + enterprise: *742 inputs: type: object nullable: true additionalProperties: true - installation: *741 - organization: *742 + installation: *743 + organization: *744 ref: type: string - repository: *743 + repository: *745 sender: *4 workflow: type: string @@ -229539,10 +229704,10 @@ x-webhooks: type: string enum: - completed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: allOf: @@ -229779,7 +229944,7 @@ x-webhooks: type: string required: - conclusion - deployment: *506 + deployment: *508 required: - action - repository @@ -229858,10 +230023,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: allOf: @@ -230121,7 +230286,7 @@ x-webhooks: required: - status - steps - deployment: *506 + deployment: *508 required: - action - repository @@ -230200,10 +230365,10 @@ x-webhooks: type: string enum: - queued - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: type: object @@ -230338,7 +230503,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *506 + deployment: *508 required: - action - repository @@ -230417,10 +230582,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 workflow_job: type: object @@ -230556,7 +230721,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *506 + deployment: *508 required: - action - repository @@ -230636,12 +230801,12 @@ x-webhooks: type: string enum: - completed - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -231640,12 +231805,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -232629,12 +232794,12 @@ x-webhooks: type: string enum: - requested - enterprise: *740 - installation: *741 - organization: *742 - repository: *743 + enterprise: *742 + installation: *743 + organization: *744 + repository: *745 sender: *4 - workflow: *757 + workflow: *759 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 738780d88f..51be45841a 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -25222,6 +25222,905 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + } + } + }, + "additionalProperties": false + }, + "examples": { + "default": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + } + } + } + } + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-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": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-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": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/teams": { "get": { "summary": "List enterprise teams", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index ecd1020040..f26689923b 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -881,7 +881,7 @@ paths: - subscriptions_url - type - url - type: &332 + type: &334 type: string description: The type of credit the user is receiving. enum: @@ -1041,7 +1041,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &129 + schema: &131 title: Validation Error Simple description: Validation Error Simple type: object @@ -1074,7 +1074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &668 + - &670 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1198,7 +1198,7 @@ paths: GitHub. type: object nullable: true - properties: &81 + properties: &83 id: description: Unique identifier of the GitHub app example: 37 @@ -1331,7 +1331,7 @@ paths: about itself. example: 5 type: integer - required: &82 + required: &84 - id - node_id - owner @@ -1636,7 +1636,7 @@ paths: schema: type: integer default: 30 - - &217 + - &219 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 @@ -1645,7 +1645,7 @@ paths: required: false schema: type: string - - &218 + - &220 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -1665,7 +1665,7 @@ paths: application/json: schema: type: array - items: &219 + items: &221 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1745,7 +1745,7 @@ paths: - installation_id - repository_id examples: - default: &220 + default: &222 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1804,7 +1804,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &128 + schema: &130 title: Validation Error description: Validation Error type: object @@ -1873,7 +1873,7 @@ paths: description: Response content: application/json: - schema: &221 + schema: &223 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1987,7 +1987,7 @@ paths: - request - response examples: - default: &222 + default: &224 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2188,7 +2188,7 @@ paths: parameters: - *17 - *19 - - &93 + - &95 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) @@ -2771,7 +2771,7 @@ paths: suspended_at: suspended_by: headers: - Link: &68 + Link: &70 example: ; rel="next", ; rel="last" schema: @@ -2968,11 +2968,11 @@ paths: - selected repositories: type: array - items: &80 + items: &82 title: Repository description: A repository on GitHub. type: object - properties: &296 + properties: &298 id: description: Unique identifier of the repository example: 42 @@ -2992,7 +2992,7 @@ paths: title: License Simple description: License Simple type: object - properties: &89 + properties: &91 key: type: string example: mit @@ -3014,7 +3014,7 @@ paths: html_url: type: string format: uri - required: &90 + required: &92 - key - name - url @@ -3423,7 +3423,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &297 + required: &299 - archive_url - assignees_url - blobs_url @@ -3497,7 +3497,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &298 + x-github-breaking-changes: &300 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -7453,7 +7453,7 @@ paths: required: true content: application/json: - schema: &141 + schema: &143 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -8153,7 +8153,7 @@ paths: description: Response content: application/json: - schema: &188 + schema: &190 type: array description: A list of default code security configurations items: @@ -8169,7 +8169,7 @@ paths: default configuration: *49 examples: - default: &189 + default: &191 value: - default_for_new_repos: public configuration: @@ -8631,7 +8631,7 @@ paths: default: value: default_for_new_repos: all - configuration: &187 + configuration: &189 value: id: 1325 target_type: organization @@ -8721,7 +8721,7 @@ paths: application/json: schema: type: array - items: &190 + items: &192 type: object description: Repositories associated with a code security configuration and attachment status @@ -8743,7 +8743,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &208 + properties: &68 id: type: integer format: int64 @@ -8970,7 +8970,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: &209 + required: &69 - archive_url - assignees_url - blobs_url @@ -9022,7 +9022,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &191 + repository: &193 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9527,7 +9527,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &197 + - &199 name: classification in: query description: |- @@ -9536,7 +9536,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &198 + - &200 name: state in: query description: |- @@ -9545,7 +9545,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &199 + - &201 name: severity in: query description: |- @@ -9554,7 +9554,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &200 + - &202 name: ecosystem in: query description: |- @@ -9563,14 +9563,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &201 + - &203 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 - - &202 + - &204 name: epss_percentage in: query description: |- @@ -9582,7 +9582,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 - - &497 + - &499 name: has in: query description: |- @@ -9596,7 +9596,7 @@ paths: type: string enum: - patch - - &203 + - &205 name: assignee in: query description: |- @@ -9605,7 +9605,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &204 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9615,7 +9615,7 @@ paths: enum: - development - runtime - - &205 + - &207 name: sort in: query description: |- @@ -9641,11 +9641,11 @@ paths: application/json: schema: type: array - items: &206 + items: &208 type: object description: A Dependabot alert. properties: - number: &177 + number: &179 type: integer description: The security alert number. readOnly: true @@ -9708,7 +9708,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &498 + security_advisory: &500 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9937,29 +9937,29 @@ paths: - withdrawn_at version: '2026-03-10' security_vulnerability: *66 - url: &180 + url: &182 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &181 + html_url: &183 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &178 + created_at: &180 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: &179 + updated_at: &181 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: &183 + dismissed_at: &185 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9989,21 +9989,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &182 + fixed_at: &184 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: &499 + auto_dismissed_at: &501 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: &500 + dismissal_request: &502 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -10065,7 +10065,7 @@ paths: - repository additionalProperties: false examples: - default: &207 + default: &209 value: - number: 2 state: dismissed @@ -10413,6 +10413,266 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - *40 + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: &210 + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able + to access in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + title: Simple Repository + description: A GitHub repository. + type: object + properties: *68 + required: *69 + nullable: true + additionalProperties: false + examples: + default: &211 + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/teams": get: summary: List enterprise teams @@ -10434,7 +10694,7 @@ paths: application/json: schema: type: array - items: &69 + items: &71 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10505,7 +10765,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -10578,9 +10838,9 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: &77 + default: &79 value: id: 1 name: Justice League @@ -10609,7 +10869,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &70 + - &72 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10628,7 +10888,7 @@ paths: type: array items: *4 examples: - default: &71 + default: &73 value: - login: octocat id: 1 @@ -10649,7 +10909,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10667,7 +10927,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10698,7 +10958,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10716,7 +10976,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10747,7 +11007,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10765,8 +11025,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *70 - - &72 + - *72 + - &74 name: username description: The handle for the GitHub user account. in: path @@ -10780,7 +11040,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &73 + exampleKey1: &75 value: login: octocat id: 1 @@ -10816,8 +11076,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *70 - *72 + - *74 responses: '201': description: Successfully added team member @@ -10825,7 +11085,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *73 + exampleKey1: *75 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10843,8 +11103,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *70 - *72 + - *74 responses: '204': description: Response @@ -10866,7 +11126,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *70 + - *72 - *17 - *19 responses: @@ -10876,11 +11136,11 @@ paths: application/json: schema: type: array - items: &74 + items: &76 title: Organization Simple description: A GitHub organization. type: object - properties: &193 + properties: &195 login: type: string example: github @@ -10921,7 +11181,7 @@ paths: type: string example: A great organization nullable: true - required: &194 + required: &196 - login - url - id @@ -10935,7 +11195,7 @@ paths: - avatar_url - description examples: - default: &75 + default: &77 value: login: github id: 1 @@ -10966,7 +11226,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -10994,9 +11254,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &117 + default: &119 value: - login: github id: 1 @@ -11027,7 +11287,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *70 + - *72 requestBody: required: true content: @@ -11068,8 +11328,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *70 - - &76 + - *72 + - &78 name: org description: The organization name. The name is not case sensitive. in: path @@ -11081,9 +11341,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 '404': description: The team is not assigned to the organization x-github: @@ -11102,16 +11362,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *74 + schema: *76 examples: - default: *75 + default: *77 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -11128,8 +11388,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *70 - - *76 + - *72 + - *78 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -11153,7 +11413,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &78 + - &80 name: team_slug description: The slug of the team name. in: path @@ -11165,11 +11425,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -11187,7 +11447,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *78 + - *80 requestBody: required: true content: @@ -11242,11 +11502,11 @@ paths: description: Response content: application/json: - schema: *69 + schema: *71 examples: - default: *77 + default: *79 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -11267,7 +11527,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *78 + - *80 responses: '204': description: Response @@ -11305,7 +11565,7 @@ paths: application/json: schema: type: array - items: &112 + items: &114 title: Event description: Event type: object @@ -11315,7 +11575,7 @@ paths: type: type: string nullable: true - actor: &79 + actor: &81 title: Actor description: Actor type: object @@ -11355,7 +11615,7 @@ paths: - id - name - url - org: *79 + org: *81 payload: oneOf: - title: CreateEvent @@ -11401,7 +11661,7 @@ paths: properties: action: type: string - discussion: &761 + discussion: &763 title: Discussion description: A Discussion in a repository. type: object @@ -11688,7 +11948,7 @@ paths: - id labels: type: array - items: &85 + items: &87 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11763,12 +12023,12 @@ paths: properties: action: type: string - issue: &86 + issue: &88 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &552 + properties: &554 id: type: integer format: int64 @@ -11881,7 +12141,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &280 + properties: &282 url: type: string format: uri @@ -11951,7 +12211,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &281 + required: &283 - closed_issues - creator - description @@ -12030,7 +12290,7 @@ paths: timeline_url: type: string format: uri - type: &243 + type: &245 title: Issue Type description: The type of issue. type: object @@ -12080,7 +12340,7 @@ paths: - node_id - name - description - repository: *80 + repository: *82 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -12091,9 +12351,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - author_association: &83 + properties: *83 + required: *84 + author_association: &85 title: author_association type: string example: OWNER @@ -12108,7 +12368,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &84 + reactions: &86 title: Reaction Rollup type: object properties: @@ -12144,7 +12404,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &679 + sub_issues_summary: &681 title: Sub-issues Summary type: object properties: @@ -12169,7 +12429,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &87 + properties: &89 id: description: Unique identifier of the issue comment example: 42 @@ -12212,7 +12472,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -12223,15 +12483,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &576 + properties: &578 pinned_at: type: string format: date-time @@ -12243,11 +12503,11 @@ paths: properties: *20 required: *21 nullable: true - required: &577 + required: &579 - pinned_at - pinned_by nullable: true - required: &88 + required: &90 - id - node_id - html_url @@ -12257,7 +12517,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &680 + issue_dependencies_summary: &682 title: Issue Dependencies Summary type: object properties: @@ -12276,7 +12536,7 @@ paths: - total_blocking issue_field_values: type: array - items: &560 + items: &562 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12337,7 +12597,7 @@ paths: - node_id - data_type - value - required: &553 + required: &555 - assignee - closed_at - comments @@ -12358,7 +12618,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &554 + x-github-breaking-changes: &556 - changeset: deprecate_beta_media_type patch: properties: @@ -12405,10 +12665,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - issue @@ -12417,14 +12677,14 @@ paths: properties: action: type: string - issue: *86 - comment: &548 + issue: *88 + comment: &550 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 required: - action - issue @@ -12597,8 +12857,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true allow_forking: type: boolean @@ -12687,7 +12947,7 @@ paths: type: string number: type: integer - pull_request: &91 + pull_request: &93 title: Pull Request Minimal type: object properties: @@ -12758,10 +13018,10 @@ paths: assignees: type: array items: *4 - label: *85 + label: *87 labels: type: array - items: *85 + items: *87 required: - action - number @@ -12771,7 +13031,7 @@ paths: properties: action: type: string - pull_request: *91 + pull_request: *93 comment: type: object properties: @@ -13022,7 +13282,7 @@ paths: - pull_request updated_at: type: string - pull_request: *91 + pull_request: *93 required: - action - review @@ -13071,7 +13331,7 @@ paths: updated_at: type: string format: date-time - reactions: *84 + reactions: *86 required: - action - comment @@ -13082,7 +13342,7 @@ paths: type: string release: allOf: - - &610 + - &612 title: Release description: A release. type: object @@ -13153,7 +13413,7 @@ paths: author: *4 assets: type: array - items: &611 + items: &613 title: Release Asset description: Data related to a release. type: object @@ -13228,7 +13488,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *84 + reactions: *86 required: - assets_url - upload_url @@ -13320,7 +13580,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &120 + '503': &122 description: Service unavailable content: application/json: @@ -13413,7 +13673,7 @@ paths: _links: type: object properties: - timeline: &92 + timeline: &94 title: Link With Type description: Hypermedia Link with Type type: object @@ -13425,17 +13685,17 @@ paths: required: - href - type - user: *92 - security_advisories: *92 - current_user: *92 - current_user_public: *92 - current_user_actor: *92 - current_user_organization: *92 + user: *94 + security_advisories: *94 + current_user: *94 + current_user_public: *94 + current_user_actor: *94 + current_user_organization: *94 current_user_organizations: type: array - items: *92 - repository_discussions: *92 - repository_discussions_category: *92 + items: *94 + repository_discussions: *94 + repository_discussions_category: *94 required: - timeline - user @@ -13497,7 +13757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *93 + - *95 - *17 - *19 responses: @@ -13507,7 +13767,7 @@ paths: application/json: schema: type: array - items: &94 + items: &96 title: Base Gist description: Base Gist type: object @@ -13635,7 +13895,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &95 + default: &97 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13680,7 +13940,7 @@ paths: site_admin: false truncated: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 x-github: @@ -13756,7 +14016,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Gist Simple description: Gist Simple type: object @@ -13773,7 +14033,7 @@ paths: url: type: string format: uri - user: &686 + user: &688 title: Public User description: Public User type: object @@ -14143,7 +14403,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &97 + default: &99 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -14247,7 +14507,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -14257,11 +14517,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -14281,7 +14541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *93 + - *95 - *17 - *19 responses: @@ -14291,11 +14551,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '401': *25 '304': *37 '403': *29 @@ -14320,7 +14580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &98 + - &100 name: gist_id description: The unique identifier of the gist. in: path @@ -14332,10 +14592,10 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 - '403': &101 + default: *99 + '403': &103 description: Forbidden Gist content: application/json: @@ -14382,7 +14642,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *98 + - *100 requestBody: required: true content: @@ -14442,9 +14702,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - updateGist: *97 + updateGist: *99 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -14602,7 +14862,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -14630,7 +14890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *98 + - *100 - *17 - *19 responses: @@ -14640,7 +14900,7 @@ paths: application/json: schema: type: array - items: &99 + items: &101 title: Gist Comment description: A comment made to a gist. type: object @@ -14675,7 +14935,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *83 + author_association: *85 required: - url - id @@ -14715,7 +14975,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -14739,7 +14999,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *98 + - *100 requestBody: required: true content: @@ -14764,9 +15024,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: &100 + default: &102 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14823,8 +15083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *98 - - &102 + - *100 + - &104 name: comment_id description: The unique identifier of the comment. in: path @@ -14837,12 +15097,12 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '304': *37 '404': *6 - '403': *101 + '403': *103 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14863,8 +15123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 requestBody: required: true content: @@ -14889,9 +15149,9 @@ paths: description: Response content: application/json: - schema: *99 + schema: *101 examples: - default: *100 + default: *102 '404': *6 x-github: githubCloudOnly: false @@ -14908,8 +15168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *98 - - *102 + - *100 + - *104 responses: '204': description: Response @@ -14932,7 +15192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *98 + - *100 - *17 - *19 responses: @@ -15033,7 +15293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *98 + - *100 - *17 - *19 responses: @@ -15043,7 +15303,7 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: default: value: @@ -15089,7 +15349,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 '304': *37 '403': *29 @@ -15108,13 +15368,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *98 + - *100 responses: '201': description: Response content: application/json: - schema: *94 + schema: *96 examples: default: value: @@ -15191,7 +15451,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *98 + - *100 responses: '204': description: Response if gist is starred @@ -15221,7 +15481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -15243,7 +15503,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *98 + - *100 responses: '204': description: Response @@ -15271,7 +15531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *98 + - *100 - name: sha in: path required: true @@ -15282,9 +15542,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *97 + default: *99 '422': *15 '404': *6 '403': *29 @@ -15445,7 +15705,7 @@ paths: type: array items: allOf: - - *80 + - *82 repository_selection: type: string example: selected @@ -15568,7 +15828,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '403': *29 '304': *37 '401': *25 @@ -15652,7 +15912,7 @@ paths: - closed - all default: open - - &246 + - &248 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15671,7 +15931,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - name: collab in: query required: false @@ -15701,9 +15961,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &247 + default: &249 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15948,7 +16208,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '404': *6 @@ -15987,8 +16247,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 examples: default: value: @@ -16273,7 +16533,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &103 + X-CommonMarker-Version: &105 example: 0.17.4 schema: type: string @@ -16328,7 +16588,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *103 + X-CommonMarker-Version: *105 content: text/html: schema: @@ -16357,7 +16617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &106 + - &108 name: account_id description: account_id parameter in: path @@ -16369,7 +16629,7 @@ paths: description: Response content: application/json: - schema: &105 + schema: &107 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -16399,7 +16659,7 @@ paths: nullable: true id: type: integer - plan: &104 + plan: &106 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -16488,7 +16748,7 @@ paths: nullable: true updated_at: type: string - plan: *104 + plan: *106 required: - url - id @@ -16496,7 +16756,7 @@ paths: - login - marketplace_purchase examples: - default: &107 + default: &109 value: url: https://api.github.com/orgs/github type: Organization @@ -16581,9 +16841,9 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: &108 + default: &110 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -16601,7 +16861,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '401': *25 x-github: @@ -16623,14 +16883,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &109 + - &111 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &110 + - &112 name: sort description: The property to sort the results by. in: query @@ -16660,9 +16920,9 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: &111 + default: &113 value: - url: https://api.github.com/orgs/github type: Organization @@ -16713,7 +16973,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '404': *6 '422': *15 '401': *25 @@ -16736,15 +16996,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *106 + - *108 responses: '200': description: Response content: application/json: - schema: *105 + schema: *107 examples: - default: *107 + default: *109 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -16776,11 +17036,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *108 + default: *110 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -16801,8 +17061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *109 - - *110 + - *111 + - *112 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16822,11 +17082,11 @@ paths: application/json: schema: type: array - items: *105 + items: *107 examples: - default: *111 + default: *113 headers: - Link: *68 + Link: *70 '401': *25 x-github: githubCloudOnly: false @@ -17088,14 +17348,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &344 + - &346 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &345 + - &347 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -17112,7 +17372,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -17157,7 +17417,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &348 + '301': &350 description: Moved permanently content: application/json: @@ -17179,7 +17439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &586 + - &588 name: all description: If `true`, show notifications marked as read. in: query @@ -17187,7 +17447,7 @@ paths: schema: type: boolean default: false - - &587 + - &589 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -17196,8 +17456,8 @@ paths: schema: type: boolean default: false - - *93 - - &588 + - *95 + - &590 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: @@ -17222,18 +17482,18 @@ paths: application/json: schema: type: array - items: &113 + items: &115 title: Thread description: Thread type: object properties: id: type: string - repository: &159 + repository: &161 title: Minimal Repository description: Minimal Repository type: object - properties: &211 + properties: &213 id: type: integer format: int64 @@ -17519,7 +17779,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &299 + security_and_analysis: &301 nullable: true type: object properties: @@ -17639,7 +17899,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &212 + required: &214 - archive_url - assignees_url - blobs_url @@ -17686,7 +17946,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &213 + x-github-breaking-changes: &215 - changeset: remove_has_downloads patch: properties: @@ -17733,7 +17993,7 @@ paths: - url - subscription_url examples: - default: &589 + default: &591 value: - id: '1' repository: @@ -17815,7 +18075,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -17899,7 +18159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &114 + - &116 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 @@ -17913,7 +18173,7 @@ paths: description: Response content: application/json: - schema: *113 + schema: *115 examples: default: value: @@ -18015,7 +18275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *114 + - *116 responses: '205': description: Reset Content @@ -18037,7 +18297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *114 + - *116 responses: '204': description: No content @@ -18060,13 +18320,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *114 + - *116 responses: '200': description: Response content: application/json: - schema: &115 + schema: &117 title: Thread Subscription description: Thread Subscription type: object @@ -18103,7 +18363,7 @@ paths: - url - subscribed examples: - default: &116 + default: &118 value: subscribed: true ignored: false @@ -18134,7 +18394,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *114 + - *116 requestBody: required: false content: @@ -18155,9 +18415,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *117 examples: - default: *116 + default: *118 '304': *37 '403': *29 '401': *25 @@ -18180,7 +18440,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *114 + - *116 responses: '204': description: Response @@ -18275,9 +18535,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: Link: example: ; rel="next" @@ -18304,13 +18564,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &118 + schema: &120 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -18343,12 +18603,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *118 + schema: *120 examples: selected_actions: *42 responses: @@ -18377,13 +18637,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &119 + schema: &121 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -18416,12 +18676,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *119 + schema: *121 examples: selected_actions: *44 responses: @@ -18451,7 +18711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *76 + - *78 - name: page description: The page number of the results to fetch. in: query @@ -18623,8 +18883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *76 - - &121 + - *78 + - &123 name: budget_id description: The ID corresponding to the budget. in: path @@ -18721,7 +18981,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18741,8 +19001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 requestBody: required: true content: @@ -18933,8 +19193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *76 - - *121 + - *78 + - *123 responses: '200': description: Response when deleting a budget @@ -18961,7 +19221,7 @@ paths: '404': *6 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18981,8 +19241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *76 - - &122 + - *78 + - &124 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, @@ -18991,7 +19251,7 @@ paths: required: false schema: type: integer - - &124 + - &126 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 @@ -19000,7 +19260,7 @@ paths: required: false schema: type: integer - - &123 + - &125 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 @@ -19015,14 +19275,14 @@ paths: required: false schema: type: string - - &736 + - &738 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &125 + - &127 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -19139,7 +19399,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19159,9 +19419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *76 - - *122 - - &737 + - *78 + - *124 + - &739 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 @@ -19170,7 +19430,7 @@ paths: required: false schema: type: integer - - *123 + - *125 responses: '200': description: Billing usage report response for an organization @@ -19246,7 +19506,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19269,19 +19529,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *76 - - *122 + - *78 - *124 - - *123 - - &738 + - *126 + - *125 + - &740 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *125 - - &739 + - *127 + - &741 name: sku description: The SKU to query for usage. in: query @@ -19392,7 +19652,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19418,13 +19678,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &126 + schema: &128 title: Organization Full description: Organization Full type: object @@ -19749,7 +20009,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &127 + default-response: &129 value: login: github id: 1 @@ -19855,7 +20115,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *76 + - *78 requestBody: required: false content: @@ -20071,17 +20331,17 @@ paths: description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '422': description: Validation failed content: application/json: schema: oneOf: - - *128 - - *129 + - *130 + - *131 '409': *54 x-github: githubCloudOnly: false @@ -20115,7 +20375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *76 + - *78 responses: '202': *39 '404': *6 @@ -20146,7 +20406,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -20172,7 +20432,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20193,7 +20453,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: - - *76 + - *78 - *17 - *19 responses: @@ -20211,7 +20471,7 @@ paths: type: integer repository_cache_usages: type: array - items: &355 + items: &357 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20246,7 +20506,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20266,7 +20526,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -20284,7 +20544,7 @@ paths: type: integer runners: type: array - items: &130 + items: &132 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20338,7 +20598,7 @@ paths: - display_name - source nullable: true - machine_size_details: &138 + machine_size_details: &140 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20434,7 +20694,7 @@ paths: - public_ip_enabled - platform examples: - default: &158 + default: &160 value: total_count: 2 runners: @@ -20476,7 +20736,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20494,7 +20754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -20571,9 +20831,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: &139 + default: &141 value: id: 5 name: My hosted ubuntu runner @@ -20614,7 +20874,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -20630,7 +20890,7 @@ paths: type: integer images: type: array - items: &131 + items: &133 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20681,7 +20941,7 @@ paths: - latest_version - state examples: - default: &133 + default: &135 value: total_count: 2 image_versions: @@ -20712,8 +20972,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: - - *76 - - &132 + - *78 + - &134 name: image_definition_id description: Image definition ID of custom image in: path @@ -20725,7 +20985,7 @@ paths: description: Response content: application/json: - schema: *131 + schema: *133 examples: default: value: @@ -20755,8 +21015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *76 - - *132 + - *78 + - *134 responses: '204': description: Response @@ -20779,8 +21039,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: - - *132 - - *76 + - *134 + - *78 responses: '200': description: Response @@ -20796,7 +21056,7 @@ paths: type: integer image_versions: type: array - items: &134 + items: &136 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20829,7 +21089,7 @@ paths: - created_on - state_details examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20849,9 +21109,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: - - *76 - - *132 - - &135 + - *78 + - *134 + - &137 name: version description: Version of a custom image in: path @@ -20864,7 +21124,7 @@ paths: description: Response content: application/json: - schema: *134 + schema: *136 examples: default: value: @@ -20890,9 +21150,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: - - *76 - - *132 - - *135 + - *78 + - *134 + - *137 responses: '204': description: Response @@ -20913,7 +21173,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: - - *76 + - *78 responses: '200': description: Response @@ -20929,7 +21189,7 @@ paths: type: integer images: type: array - items: &136 + items: &138 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20965,7 +21225,7 @@ paths: - display_name - source examples: - default: &137 + default: &139 value: id: ubuntu-20.04 platform: linux-x64 @@ -20989,7 +21249,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: - - *76 + - *78 responses: '200': description: Response @@ -21005,9 +21265,9 @@ paths: type: integer images: type: array - items: *136 + items: *138 examples: - default: *137 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21024,7 +21284,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: - - *76 + - *78 responses: '200': description: Response @@ -21077,7 +21337,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: - - *76 + - *78 responses: '200': description: Response @@ -21093,7 +21353,7 @@ paths: type: integer machine_specs: type: array - items: *138 + items: *140 examples: default: value: @@ -21118,7 +21378,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: - - *76 + - *78 responses: '200': description: Response @@ -21162,8 +21422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *76 - - &140 + - *78 + - &142 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -21175,11 +21435,11 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21197,8 +21457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 requestBody: required: true content: @@ -21264,9 +21524,9 @@ paths: description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21282,16 +21542,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *140 + - *78 + - *142 responses: '202': description: Response content: application/json: - schema: *130 + schema: *132 examples: - default: *139 + default: *141 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -21311,7 +21571,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: A JSON array of OIDC custom property inclusions @@ -21344,12 +21604,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *141 + schema: *143 examples: default: *46 responses: @@ -21383,7 +21643,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization parameters: - - *76 + - *78 - name: custom_property_name in: path required: true @@ -21416,7 +21676,7 @@ 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: - - *76 + - *78 responses: '200': description: A JSON serialized template for OIDC subject claim customization @@ -21436,7 +21696,7 @@ paths: required: - include_claim_keys examples: - default: &142 + default: &144 value: include_claim_keys: - repo @@ -21458,7 +21718,7 @@ 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: - - *76 + - *78 requestBody: required: true content: @@ -21475,13 +21735,13 @@ paths: items: type: string examples: - default: *142 + default: *144 responses: '201': description: Empty response content: application/json: - schema: &168 + schema: &170 title: Empty Object description: An object without any properties. type: object @@ -21511,7 +21771,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -21520,7 +21780,7 @@ paths: schema: type: object properties: - enabled_repositories: &143 + enabled_repositories: &145 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21533,7 +21793,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: &144 + allowed_actions: &146 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21541,12 +21801,12 @@ paths: - all - local_only - selected - selected_actions_url: &361 + selected_actions_url: &363 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: &145 + sha_pinning_required: &147 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21577,7 +21837,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21588,9 +21848,9 @@ paths: schema: type: object properties: - enabled_repositories: *143 - allowed_actions: *144 - sha_pinning_required: *145 + enabled_repositories: *145 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled_repositories examples: @@ -21618,13 +21878,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &365 + schema: &367 type: object properties: days: @@ -21661,12 +21921,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &366 + schema: &368 type: object properties: days: @@ -21703,13 +21963,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &146 + schema: &148 type: object properties: approval_policy: @@ -21723,7 +21983,7 @@ paths: required: - approval_policy examples: - default: &367 + default: &369 value: approval_policy: first_time_contributors '404': *6 @@ -21744,7 +22004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -21754,7 +22014,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -21776,13 +22036,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: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &368 + schema: &370 type: object required: - run_workflows_from_fork_pull_requests @@ -21808,7 +22068,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &147 + default: &149 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21831,12 +22091,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: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &369 + schema: &371 type: object required: - run_workflows_from_fork_pull_requests @@ -21859,7 +22119,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -21889,7 +22149,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: - - *76 + - *78 - *17 - *19 responses: @@ -21907,9 +22167,9 @@ paths: type: number repositories: type: array - items: *80 + items: *82 examples: - default: &151 + default: &153 value: total_count: 1 repositories: @@ -22049,7 +22309,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: - - *76 + - *78 responses: '204': description: Response @@ -22093,8 +22353,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: - - *76 - - &148 + - *78 + - &150 name: repository_id description: The unique identifier of the repository. in: path @@ -22122,8 +22382,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -22146,13 +22406,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &149 + schema: &151 type: object properties: github_owned_allowed: @@ -22174,7 +22434,7 @@ paths: items: type: string examples: - default: &150 + default: &152 value: github_owned_allowed: true verified_allowed: false @@ -22199,7 +22459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -22207,9 +22467,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22229,7 +22489,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -22277,7 +22537,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -22324,7 +22584,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: - - *76 + - *78 - *17 - *19 responses: @@ -22339,9 +22599,9 @@ paths: type: integer repositories: type: array - items: *80 + items: *82 examples: - default: *151 + default: *153 '403': *29 '404': *6 x-github: @@ -22361,7 +22621,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: - - *76 + - *78 requestBody: required: true content: @@ -22409,8 +22669,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -22436,8 +22696,8 @@ 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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No content @@ -22465,23 +22725,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &370 + schema: &372 type: object properties: - default_workflow_permissions: &152 + default_workflow_permissions: &154 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &153 + can_approve_pull_request_reviews: &155 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22489,7 +22749,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &154 + default: &156 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22514,7 +22774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Success response @@ -22522,13 +22782,13 @@ paths: required: false content: application/json: - schema: &371 + schema: &373 type: object properties: - default_workflow_permissions: *152 - can_approve_pull_request_reviews: *153 + default_workflow_permissions: *154 + can_approve_pull_request_reviews: *155 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22548,7 +22808,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: - - *76 + - *78 - *17 - *19 - name: visible_to_repository @@ -22573,7 +22833,7 @@ paths: type: number runner_groups: type: array - items: &155 + items: &157 type: object properties: id: @@ -22689,7 +22949,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: - - *76 + - *78 requestBody: required: true content: @@ -22761,9 +23021,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: &157 + default: &159 value: id: 2 name: octo-runner-group @@ -22798,8 +23058,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: - - *76 - - &156 + - *78 + - &158 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22811,7 +23071,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: default: value: @@ -22847,8 +23107,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -22902,9 +23162,9 @@ paths: description: Response content: application/json: - schema: *155 + schema: *157 examples: - default: *157 + default: *159 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22923,8 +23183,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: - - *76 - - *156 + - *78 + - *158 responses: '204': description: Response @@ -22947,8 +23207,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -22966,11 +23226,11 @@ paths: type: number runners: type: array - items: *130 + items: *132 examples: - default: *158 + default: *160 headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22990,8 +23250,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: - - *76 - - *156 + - *78 + - *158 - *19 - *17 responses: @@ -23009,9 +23269,9 @@ paths: type: number repositories: type: array - items: *159 + items: *161 examples: - default: &196 + default: &198 value: total_count: 1 repositories: @@ -23263,8 +23523,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: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -23308,9 +23568,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -23332,9 +23592,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: - - *76 - - *156 - - *148 + - *78 + - *158 + - *150 responses: '204': description: Response @@ -23357,8 +23617,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: - - *76 - - *156 + - *78 + - *158 - *17 - *19 responses: @@ -23376,7 +23636,7 @@ paths: type: number runners: type: array - items: &161 + items: &163 title: Self hosted runners description: A self hosted runner type: object @@ -23405,7 +23665,7 @@ paths: type: boolean labels: type: array - items: &164 + items: &166 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23435,7 +23695,7 @@ paths: - busy - labels examples: - default: &162 + default: &164 value: total_count: 2 runners: @@ -23475,7 +23735,7 @@ paths: name: no-gpu type: custom headers: - Link: *68 + Link: *70 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23494,8 +23754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *156 + - *78 + - *158 requestBody: required: true content: @@ -23539,9 +23799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *76 - - *156 - - &160 + - *78 + - *158 + - &162 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23569,9 +23829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *76 - - *156 - - *160 + - *78 + - *158 + - *162 responses: '204': description: Response @@ -23601,7 +23861,7 @@ paths: in: query schema: type: string - - *76 + - *78 - *17 - *19 responses: @@ -23619,11 +23879,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23645,7 +23905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -23653,7 +23913,7 @@ paths: application/json: schema: type: array - items: &372 + items: &374 title: Runner Application description: Runner Application type: object @@ -23678,7 +23938,7 @@ paths: - download_url - filename examples: - default: &373 + default: &375 value: - os: osx architecture: x64 @@ -23721,7 +23981,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -23764,7 +24024,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &374 + '201': &376 description: Response content: application/json: @@ -23774,7 +24034,7 @@ paths: - runner - encoded_jit_config properties: - runner: *161 + runner: *163 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23831,13 +24091,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: &163 + schema: &165 title: Authentication Token description: Authentication Token type: object @@ -23859,7 +24119,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *80 + items: *82 single_file: type: string example: config.yaml @@ -23875,7 +24135,7 @@ paths: - token - expires_at examples: - default: &375 + default: &377 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23906,15 +24166,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: &376 + default: &378 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23939,16 +24199,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: - - *76 - - *160 + - *78 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: &377 + default: &379 value: id: 23 name: MBP @@ -23989,8 +24249,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: - - *76 - - *160 + - *78 + - *162 responses: '204': description: Response @@ -24016,10 +24276,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &165 + '200': &167 description: Response content: application/json: @@ -24033,7 +24293,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -24072,8 +24332,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -24097,7 +24357,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -24121,8 +24381,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: - - *76 - - *160 + - *78 + - *162 requestBody: required: true content: @@ -24147,7 +24407,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -24171,10 +24431,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: - - *76 - - *160 + - *78 + - *162 responses: - '200': &378 + '200': &380 description: Response content: application/json: @@ -24188,7 +24448,7 @@ paths: type: integer labels: type: array - items: *164 + items: *166 examples: default: value: @@ -24229,9 +24489,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: - - *76 - - *160 - - &379 + - *78 + - *162 + - &381 name: name description: The name of a self-hosted runner's custom label. in: path @@ -24239,7 +24499,7 @@ paths: schema: type: string responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -24264,7 +24524,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -24282,7 +24542,7 @@ paths: type: integer secrets: type: array - items: &166 + items: &168 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24332,7 +24592,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24355,13 +24615,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &391 + schema: &393 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24390,7 +24650,7 @@ paths: - key_id - key examples: - default: &392 + default: &394 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24415,8 +24675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *76 - - &167 + - *78 + - &169 name: secret_name description: The name of the secret. in: path @@ -24428,7 +24688,7 @@ paths: description: Response content: application/json: - schema: *166 + schema: *168 examples: default: value: @@ -24458,8 +24718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -24516,7 +24776,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -24542,8 +24802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -24569,8 +24829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -24588,9 +24848,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: &171 + default: &173 value: total_count: 1 repositories: @@ -24682,8 +24942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -24735,8 +24995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24769,8 +25029,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -24802,8 +25062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *76 - - &360 + - *78 + - &362 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)." @@ -24827,7 +25087,7 @@ paths: type: integer variables: type: array - items: &169 + items: &171 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24891,7 +25151,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24912,7 +25172,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *76 + - *78 requestBody: required: true content: @@ -24960,7 +25220,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -24985,8 +25245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *76 - - &170 + - *78 + - &172 name: name description: The name of the variable. in: path @@ -24998,7 +25258,7 @@ paths: description: Response content: application/json: - schema: *169 + schema: *171 examples: default: value: @@ -25028,8 +25288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -25091,8 +25351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 responses: '204': description: Response @@ -25118,8 +25378,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - *19 - *17 responses: @@ -25137,9 +25397,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '409': description: Response when the visibility of the variable is not set to `selected` @@ -25165,8 +25425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 requestBody: required: true content: @@ -25215,8 +25475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -25250,8 +25510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *76 - - *170 + - *78 + - *172 - name: repository_id in: path required: true @@ -25292,7 +25552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -25415,7 +25675,7 @@ paths: type: integer deployment_records: type: array - items: &172 + items: &174 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25461,7 +25721,7 @@ paths: required: - total_count examples: - default: &173 + default: &175 value: total_count: 1 deployment_records: @@ -25498,7 +25758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *76 + - *78 - name: cluster in: path description: The cluster name. @@ -25641,11 +25901,11 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 required: - total_count examples: - default: *173 + default: *175 '403': description: Forbidden content: @@ -25692,7 +25952,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -25855,7 +26115,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *76 + - *78 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25880,9 +26140,9 @@ paths: type: integer deployment_records: type: array - items: *172 + items: *174 examples: - default: *173 + default: *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25902,7 +26162,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25987,7 +26247,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 requestBody: required: true content: @@ -26011,12 +26271,12 @@ paths: required: - subject_digests examples: - default: &718 + default: &720 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &719 + withPredicateType: &721 value: subject_digests: - sha256:abc123 @@ -26074,7 +26334,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &720 + default: &722 value: attestations_subject_digests: - sha256:abc: @@ -26198,7 +26458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *76 + - *78 requestBody: required: true content: @@ -26263,7 +26523,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *76 + - *78 - name: subject_digest description: Subject Digest in: path @@ -26298,7 +26558,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -26346,7 +26606,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *76 + - *78 - name: attestation_id description: Attestation ID in: path @@ -26384,7 +26644,7 @@ paths: - *17 - *47 - *48 - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26439,7 +26699,7 @@ paths: initiator: type: string examples: - default: &405 + default: &407 value: attestations: - bundle: @@ -26560,7 +26820,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -26572,7 +26832,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26591,8 +26851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: If the user is blocked @@ -26617,8 +26877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -26638,8 +26898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -26664,7 +26924,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *76 + - *78 - *19 - *17 - *62 @@ -26672,7 +26932,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &174 + schema: &176 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26698,7 +26958,7 @@ paths: application/json: schema: type: array - items: &175 + items: &177 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26729,7 +26989,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &195 + items: &197 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26804,7 +27064,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &258 + properties: &260 id: description: Unique identifier of the team type: integer @@ -26876,7 +27136,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &259 + required: &261 - id - node_id - url @@ -26919,7 +27179,7 @@ paths: type: string format: date-time nullable: true - state: *174 + state: *176 contact_link: description: The contact link of the campaign. type: string @@ -27014,9 +27274,9 @@ paths: closed_at: state: open headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27040,7 +27300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -27139,9 +27399,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: &176 + default: &178 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -27190,7 +27450,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27212,7 +27472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -27224,16 +27484,16 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27254,7 +27514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -27303,7 +27563,7 @@ paths: type: string format: uri nullable: true - state: *174 + state: *176 examples: default: value: @@ -27313,9 +27573,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *177 examples: - default: *176 + default: *178 '400': description: Bad Request content: @@ -27327,7 +27587,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27348,7 +27608,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -27359,7 +27619,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27381,18 +27641,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *76 - - &430 + - *78 + - &432 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: &184 + schema: &186 type: string description: The name of the tool used to generate the code scanning analysis. - - &431 + - &433 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 @@ -27400,7 +27660,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &185 + schema: &187 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -27415,7 +27675,7 @@ paths: be returned. in: query required: false - schema: &433 + schema: &435 type: string description: State of a code scanning alert. enum: @@ -27438,7 +27698,7 @@ paths: be returned. in: query required: false - schema: &434 + schema: &436 type: string description: Severity of a code scanning alert. enum: @@ -27467,18 +27727,18 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: &435 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: &437 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &186 + state: &188 type: string description: State of a code scanning alert. nullable: true @@ -27486,7 +27746,7 @@ paths: - open - dismissed - fixed - fixed_at: *182 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -27494,8 +27754,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: &436 + dismissed_at: *185 + dismissed_reason: &438 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -27504,13 +27764,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &437 + dismissed_comment: &439 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &438 + rule: &440 type: object properties: id: @@ -27563,42 +27823,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &439 + tool: &441 type: object properties: - name: *184 + name: *186 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *185 - most_recent_instance: &440 + guid: *187 + most_recent_instance: &442 type: object properties: - ref: &432 + ref: &434 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &450 + analysis_key: &452 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: &451 + environment: &453 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: &452 + category: &454 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: *186 + state: *188 commit_sha: type: string message: @@ -27612,7 +27872,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &453 + location: &455 type: object description: Describe a region within a file for the alert. properties: @@ -27633,7 +27893,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: &454 + items: &456 type: string description: A classification of the file. For example to identify it as generated. @@ -27898,9 +28158,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: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27922,7 +28182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *76 + - *78 - name: target_type in: query description: The target type of the code security configuration @@ -28028,7 +28288,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *76 + - *78 requestBody: required: true content: @@ -28272,7 +28532,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28294,15 +28554,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *188 + schema: *190 examples: - default: *189 + default: *191 '304': *37 '403': *29 '404': *6 @@ -28328,7 +28588,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -28380,7 +28640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '200': @@ -28389,7 +28649,7 @@ paths: application/json: schema: *49 examples: - default: *187 + default: *189 '304': *37 '403': *29 '404': *6 @@ -28413,7 +28673,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28693,7 +28953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *76 + - *78 - *51 responses: '204': *61 @@ -28724,7 +28984,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *76 + - *78 - *51 requestBody: required: true @@ -28788,7 +29048,7 @@ 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: - - *76 + - *78 - *51 requestBody: required: true @@ -28834,7 +29094,7 @@ paths: default: value: default_for_new_repos: all - configuration: *187 + configuration: *189 '403': *29 '404': *6 x-github: @@ -28858,7 +29118,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *76 + - *78 - *51 - name: per_page description: The number of results per page (max 100). For more information, @@ -28887,13 +29147,13 @@ paths: application/json: schema: type: array - items: *190 + items: *192 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *191 + repository: *193 '403': *29 '404': *6 x-github: @@ -28917,7 +29177,7 @@ paths: parameters: - *17 - *19 - - *76 + - *78 responses: '200': description: Response @@ -28933,7 +29193,7 @@ paths: type: integer codespaces: type: array - items: &248 + items: &250 type: object title: Codespace description: A codespace. @@ -28958,12 +29218,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *159 + repository: *161 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &466 + properties: &468 name: type: string description: The name of the machine. @@ -29005,7 +29265,7 @@ paths: - ready - in_progress nullable: true - required: &467 + required: &469 - name - display_name - operating_system @@ -29210,7 +29470,7 @@ paths: - pulls_url - recent_folders examples: - default: &249 + default: &251 value: total_count: 3 codespaces: @@ -29642,7 +29902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29709,7 +29969,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -29764,7 +30024,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *76 + - *78 requestBody: required: true content: @@ -29816,7 +30076,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -29834,7 +30094,7 @@ paths: type: integer secrets: type: array - items: &192 + items: &194 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29873,7 +30133,7 @@ paths: - updated_at - visibility examples: - default: &468 + default: &470 value: total_count: 2 secrets: @@ -29886,7 +30146,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29905,13 +30165,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &469 + schema: &471 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29940,7 +30200,7 @@ paths: - key_id - key examples: - default: &470 + default: &472 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29963,23 +30223,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: &472 + default: &474 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29999,8 +30259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -30055,7 +30315,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -30081,8 +30341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -30107,8 +30367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -30126,9 +30386,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 '404': *6 x-github: githubCloudOnly: false @@ -30150,8 +30410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -30201,8 +30461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -30235,8 +30495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -30275,7 +30535,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: - - *76 + - *78 responses: '200': description: OK @@ -30416,7 +30676,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: - - *76 + - *78 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -30439,7 +30699,7 @@ paths: currently being billed. seats: type: array - items: &251 + items: &253 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30456,15 +30716,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *193 - required: *194 + properties: *195 + required: *196 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *195 - - *69 + - *197 + - *71 nullable: true pending_cancellation_date: type: string @@ -30588,7 +30848,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '500': *55 '401': *25 '403': *29 @@ -30622,7 +30882,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: - - *76 + - *78 requestBody: content: application/json: @@ -30700,7 +30960,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: - - *76 + - *78 requestBody: content: application/json: @@ -30780,7 +31040,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: - - *76 + - *78 requestBody: content: application/json: @@ -30857,7 +31117,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: - - *76 + - *78 requestBody: content: application/json: @@ -30935,7 +31195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#get-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -31000,7 +31260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-copilot-coding-agent-permissions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -31055,7 +31315,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#list-repositories-enabled-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -31070,12 +31330,12 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 required: - total_count - repositories examples: - default: *196 + default: *198 '500': *55 '401': *25 '403': *29 @@ -31104,7 +31364,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#set-selected-repositories-for-copilot-coding-agent-in-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -31160,8 +31420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -31194,8 +31454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - - *76 - - *148 + - *78 + - *150 responses: '204': description: No Content @@ -31234,7 +31494,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: - - *76 + - *78 responses: '200': description: OK @@ -31287,7 +31547,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: - - *76 + - *78 requestBody: description: The content exclusion rules to set required: true @@ -31378,7 +31638,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *76 + - *78 - 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`). @@ -31410,7 +31670,7 @@ paths: application/json: schema: type: array - items: &337 + items: &339 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31717,7 +31977,7 @@ paths: - date additionalProperties: true examples: - default: &338 + default: &340 value: - date: '2024-06-24' total_active_users: 24 @@ -31819,7 +32079,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &339 + '422': &341 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31850,7 +32110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31889,7 +32149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31926,7 +32186,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day parameters: - - *76 + - *78 - *56 responses: '200': @@ -31965,7 +32225,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics parameters: - - *76 + - *78 responses: '200': description: Response @@ -31998,13 +32258,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *76 - - *197 - - *198 + - *78 - *199 - *200 - *201 - *202 + - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -32034,7 +32294,7 @@ paths: enum: - patch - deployment - - *203 + - *205 - name: runtime_risk in: query description: |- @@ -32043,8 +32303,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *204 - - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -32056,9 +32316,9 @@ paths: application/json: schema: type: array - items: *206 + items: *208 examples: - default: *207 + default: *209 '304': *37 '400': *14 '403': *29 @@ -32084,7 +32344,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: - - *76 + - *78 - name: page in: query description: The page number of results to fetch. @@ -32107,104 +32367,9 @@ paths: description: Response content: application/json: - schema: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able - to access in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot - updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - title: Simple Repository - description: A GitHub repository. - type: object - properties: *208 - required: *209 - nullable: true - additionalProperties: false + schema: *210 examples: - default: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + default: *211 '403': *29 '404': *6 x-github: @@ -32235,7 +32400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -32301,7 +32466,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *76 + - *78 requestBody: required: true content: @@ -32349,7 +32514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32367,7 +32532,7 @@ paths: type: integer secrets: type: array - items: &210 + items: &212 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -32417,7 +32582,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32438,13 +32603,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &503 + schema: &505 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -32461,7 +32626,7 @@ paths: - key_id - key examples: - default: &504 + default: &506 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32484,14 +32649,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: Response content: application/json: - schema: *210 + schema: *212 examples: default: value: @@ -32519,8 +32684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -32577,7 +32742,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -32609,8 +32774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -32634,8 +32799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - *19 - *17 responses: @@ -32653,9 +32818,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32676,8 +32841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -32727,8 +32892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32759,8 +32924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *167 + - *78 + - *169 - name: repository_id in: path required: true @@ -32790,7 +32955,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: - - *76 + - *78 responses: '200': description: Response @@ -32798,7 +32963,7 @@ paths: application/json: schema: type: array - items: &261 + items: &263 title: Package description: A software package type: object @@ -32848,9 +33013,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *211 - required: *212 - x-github-breaking-changes: *213 + properties: *213 + required: *214 + x-github-breaking-changes: *215 nullable: true created_at: type: string @@ -32869,7 +33034,7 @@ paths: - created_at - updated_at examples: - default: &262 + default: &264 value: - id: 197 name: hello_docker @@ -32947,7 +33112,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32957,7 +33122,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -33029,7 +33194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *76 + - *78 - *17 - *19 responses: @@ -33039,7 +33204,7 @@ paths: application/json: schema: type: array - items: &237 + items: &239 title: Organization Invitation description: Organization Invitation type: object @@ -33086,7 +33251,7 @@ paths: - invitation_teams_url - node_id examples: - default: &238 + default: &240 value: - id: 1 login: monalisa @@ -33119,7 +33284,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -33143,7 +33308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *76 + - *78 - *17 - *19 responses: @@ -33153,7 +33318,7 @@ paths: application/json: schema: type: array - items: &214 + items: &216 title: Org Hook description: Org Hook type: object @@ -33241,7 +33406,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -33264,7 +33429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *76 + - *78 requestBody: required: true content: @@ -33324,9 +33489,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *216 examples: - default: &215 + default: &217 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -33373,8 +33538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *76 - - &216 + - *78 + - &218 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. @@ -33387,9 +33552,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *216 examples: - default: *215 + default: *217 '404': *6 x-github: githubCloudOnly: false @@ -33416,8 +33581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *76 - - *216 + - *78 + - *218 requestBody: required: false content: @@ -33462,7 +33627,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *216 examples: default: value: @@ -33503,8 +33668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *76 - - *216 + - *78 + - *218 responses: '204': description: Response @@ -33531,8 +33696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *76 - - *216 + - *78 + - *218 responses: '200': description: Response @@ -33562,8 +33727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *76 - - *216 + - *78 + - *218 requestBody: required: false content: @@ -33613,11 +33778,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *76 - - *216 - - *17 - - *217 + - *78 - *218 + - *17 + - *219 + - *220 responses: '200': description: Response @@ -33625,9 +33790,9 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: - default: *220 + default: *222 '400': *14 '422': *15 x-github: @@ -33652,17 +33817,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *76 - - *216 + - *78 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *221 + schema: *223 examples: - default: *222 + default: *224 '400': *14 '422': *15 x-github: @@ -33687,8 +33852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *76 - - *216 + - *78 + - *218 - *16 responses: '202': *39 @@ -33717,8 +33882,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *76 - - *216 + - *78 + - *218 responses: '204': description: Response @@ -33740,8 +33905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *76 - - &227 + - *78 + - &229 name: actor_type in: path description: The type of the actor @@ -33754,14 +33919,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &228 + - &230 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &223 + - &225 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`.' @@ -33769,7 +33934,7 @@ paths: required: true schema: type: string - - &224 + - &226 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) @@ -33862,13 +34027,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *76 - - *223 - - *224 + - *78 + - *225 + - *226 - *19 - *17 - *62 - - &233 + - &235 name: sort description: The property to sort the results by. in: query @@ -33945,15 +34110,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *76 - - *223 - - *224 + - *78 + - *225 + - *226 responses: '200': description: Response content: application/json: - schema: &225 + schema: &227 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33969,7 +34134,7 @@ paths: type: integer format: int64 examples: - default: &226 + default: &228 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33989,24 +34154,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *76 - - &229 + - *78 + - &231 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *223 - - *224 + - *225 + - *226 responses: '200': description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -34024,19 +34189,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *76 - - *223 - - *224 - - *227 - - *228 + - *78 + - *225 + - *226 + - *229 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 + default: *228 x-github: enabledForGitHubApps: true category: orgs @@ -34053,10 +34218,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *76 - - *223 - - *224 - - &230 + - *78 + - *225 + - *226 + - &232 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -34069,7 +34234,7 @@ paths: description: Response content: application/json: - schema: &231 + schema: &233 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -34085,7 +34250,7 @@ paths: type: integer format: int64 examples: - default: &232 + default: &234 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -34121,19 +34286,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *76 - - *229 - - *223 - - *224 - - *230 + - *78 + - *231 + - *225 + - *226 + - *232 responses: '200': description: Response content: application/json: - schema: *231 + schema: *233 examples: - default: *232 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -34150,20 +34315,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *76 - - *227 - - *228 - - *223 - - *224 + - *78 + - *229 - *230 + - *225 + - *226 + - *232 responses: '200': description: Response content: application/json: - schema: *231 + schema: *233 examples: - default: *232 + default: *234 x-github: enabledForGitHubApps: true category: orgs @@ -34180,14 +34345,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *76 - - *229 - - *223 - - *224 + - *78 + - *231 + - *225 + - *226 - *19 - *17 - *62 - - *233 + - *235 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -34260,7 +34425,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *76 + - *78 responses: '200': description: Response @@ -34268,7 +34433,7 @@ paths: application/json: schema: *22 examples: - default: &543 + default: &545 value: id: 1 account: @@ -34337,7 +34502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -34407,7 +34572,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34426,7 +34591,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34434,12 +34599,12 @@ paths: application/json: schema: anyOf: - - &235 + - &237 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &234 + limit: &236 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -34464,7 +34629,7 @@ paths: properties: {} additionalProperties: false examples: - default: &236 + default: &238 value: limit: collaborators_only origin: organization @@ -34488,18 +34653,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &544 + schema: &546 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *234 + limit: *236 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -34523,9 +34688,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *236 + default: *238 '422': *15 x-github: githubCloudOnly: false @@ -34543,7 +34708,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -34567,7 +34732,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *76 + - *78 - *17 - *19 - name: role @@ -34601,11 +34766,11 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34626,7 +34791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *76 + - *78 requestBody: required: false content: @@ -34680,7 +34845,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *239 examples: default: value: @@ -34734,8 +34899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *76 - - &239 + - *78 + - &241 name: invitation_id description: The unique identifier of the invitation. in: path @@ -34765,8 +34930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *76 - - *239 + - *78 + - *241 - *17 - *19 responses: @@ -34776,9 +34941,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: &260 + default: &262 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34794,7 +34959,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -34813,7 +34978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -34821,7 +34986,7 @@ paths: application/json: schema: type: array - items: &240 + items: &242 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -34964,7 +35129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -35054,9 +35219,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *242 examples: - default: &241 + default: &243 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -35111,8 +35276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *76 - - &242 + - *78 + - &244 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -35220,9 +35385,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *242 examples: - default: *241 + default: *243 '404': *6 '422': *7 x-github: @@ -35246,8 +35411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *76 - - *242 + - *78 + - *244 responses: '204': *61 '404': *6 @@ -35269,7 +35434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -35277,7 +35442,7 @@ paths: application/json: schema: type: array - items: *243 + items: *245 examples: default: value: @@ -35315,7 +35480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -35362,9 +35527,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: &244 + default: &246 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -35396,8 +35561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *76 - - &245 + - *78 + - &247 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -35450,9 +35615,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *245 examples: - default: *244 + default: *246 '404': *6 '422': *7 x-github: @@ -35476,8 +35641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *76 - - *245 + - *78 + - *247 responses: '204': description: Response @@ -35510,7 +35675,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *76 + - *78 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -35540,7 +35705,7 @@ paths: - closed - all default: open - - *246 + - *248 - name: type description: Can be the name of an issue type. in: query @@ -35559,7 +35724,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -35569,11 +35734,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *247 + default: *249 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -35593,7 +35758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *76 + - *78 - 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) @@ -35631,9 +35796,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -35651,8 +35816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if requester is an organization member and user is @@ -35686,8 +35851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -35719,8 +35884,8 @@ paths: parameters: - *17 - *19 - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response @@ -35736,9 +35901,9 @@ paths: type: integer codespaces: type: array - items: *248 + items: *250 examples: - default: *249 + default: *251 '304': *37 '500': *55 '401': *25 @@ -35763,9 +35928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *76 - - *72 - - &250 + - *78 + - *74 + - &252 name: codespace_name in: path required: true @@ -35798,17 +35963,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *76 - - *72 - - *250 + - *78 + - *74 + - *252 responses: '200': description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: &465 + default: &467 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -35981,14 +36146,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: - - *76 - - *72 + - *78 + - *74 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -36057,14 +36222,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '200': description: Response content: application/json: - schema: &252 + schema: &254 title: Org Membership description: Org Membership type: object @@ -36108,7 +36273,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *74 + organization: *76 user: title: Simple User description: A GitHub user. @@ -36131,7 +36296,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &253 + response-if-user-has-an-active-admin-membership-with-organization: &255 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36203,8 +36368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -36232,9 +36397,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: - response-if-user-already-had-membership-with-organization: *253 + response-if-user-already-had-membership-with-organization: *255 '422': *15 '403': *29 x-github: @@ -36264,8 +36429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -36290,7 +36455,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *76 + - *78 - *17 - *19 - name: exclude @@ -36311,7 +36476,7 @@ paths: application/json: schema: type: array - items: &254 + items: &256 title: Migration description: A migration. type: object @@ -36352,7 +36517,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *80 + items: *82 url: type: string format: uri @@ -36559,7 +36724,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -36575,7 +36740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *76 + - *78 requestBody: required: true content: @@ -36651,7 +36816,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: default: value: @@ -36829,8 +36994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *76 - - &255 + - *78 + - &257 name: migration_id description: The unique identifier of the migration. in: path @@ -36857,7 +37022,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *254 + schema: *256 examples: default: value: @@ -37026,8 +37191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *76 - - *255 + - *78 + - *257 responses: '302': description: Response @@ -37048,8 +37213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *76 - - *255 + - *78 + - *257 responses: '204': description: Response @@ -37072,9 +37237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *76 - - *255 - - &701 + - *78 + - *257 + - &703 name: repo_name description: repo_name parameter in: path @@ -37101,8 +37266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *76 - - *255 + - *78 + - *257 - *17 - *19 responses: @@ -37112,9 +37277,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: &267 + default: &269 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37227,7 +37392,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -37271,7 +37436,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of organization roles @@ -37287,7 +37452,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &257 + items: &259 title: Organization Role description: Organization roles type: object @@ -37434,8 +37599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -37460,9 +37625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *76 - *78 - - &256 + - *80 + - &258 name: role_id description: The unique identifier of the role. in: path @@ -37497,9 +37662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *76 - *78 - - *256 + - *80 + - *258 responses: '204': description: Response @@ -37524,8 +37689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -37550,9 +37715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *76 - - *72 - - *256 + - *78 + - *74 + - *258 responses: '204': description: Response @@ -37582,9 +37747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *76 - - *72 - - *256 + - *78 + - *74 + - *258 responses: '204': description: Response @@ -37612,14 +37777,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *76 - - *256 + - *78 + - *258 responses: '200': description: Response content: application/json: - schema: *257 + schema: *259 examples: default: value: @@ -37669,8 +37834,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: - - *76 - - *256 + - *78 + - *258 - *17 - *19 responses: @@ -37748,8 +37913,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *258 - required: *259 + properties: *260 + required: *261 nullable: true type: description: The ownership type of the team @@ -37781,9 +37946,9 @@ paths: - type - parent examples: - default: *260 + default: *262 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -37810,8 +37975,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: - - *76 - - *256 + - *78 + - *258 - *17 - *19 responses: @@ -37839,13 +38004,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &333 + items: &335 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *258 - required: *259 + properties: *260 + required: *261 name: nullable: true type: string @@ -37940,9 +38105,9 @@ paths: - type - url examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': description: Response if the organization or role does not exist. '422': @@ -37964,7 +38129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *76 + - *78 - 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) @@ -37991,9 +38156,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38016,8 +38181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *76 - - *72 + - *78 + - *74 requestBody: required: false content: @@ -38074,8 +38239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -38132,8 +38297,8 @@ paths: - docker - nuget - container - - *76 - - &702 + - *78 + - &704 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38169,12 +38334,12 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *262 + default: *264 '403': *29 '401': *25 - '400': &704 + '400': &706 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38196,7 +38361,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &263 + - &265 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 @@ -38214,20 +38379,20 @@ paths: - docker - nuget - container - - &264 + - &266 name: package_name description: The name of the package. in: path required: true schema: type: string - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: default: value: @@ -38279,9 +38444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *263 - - *264 - - *76 + - *265 + - *266 + - *78 responses: '204': description: Response @@ -38313,9 +38478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *263 - - *264 - - *76 + - *265 + - *266 + - *78 - name: token description: package token schema: @@ -38347,9 +38512,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: - - *263 - - *264 - - *76 + - *265 + - *266 + - *78 - *19 - *17 - name: state @@ -38369,7 +38534,7 @@ paths: application/json: schema: type: array - items: &265 + items: &267 title: Package Version description: A version of a software package type: object @@ -38494,10 +38659,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *263 - - *264 - - *76 - - &266 + - *265 + - *266 + - *78 + - &268 name: package_version_id description: Unique identifier of the package version. in: path @@ -38509,7 +38674,7 @@ paths: description: Response content: application/json: - schema: *265 + schema: *267 examples: default: value: @@ -38545,10 +38710,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *263 - - *264 - - *76 + - *265 - *266 + - *78 + - *268 responses: '204': description: Response @@ -38580,10 +38745,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *263 - - *264 - - *76 + - *265 - *266 + - *78 + - *268 responses: '204': description: Response @@ -38610,10 +38775,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: - - *76 + - *78 - *17 - *19 - - &268 + - &270 name: sort description: The property by which to sort the results. in: query @@ -38624,7 +38789,7 @@ paths: - created_at default: created_at - *62 - - &269 + - &271 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -38635,7 +38800,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &270 + - &272 name: repository description: The name of the repository to use to filter the results. in: query @@ -38643,7 +38808,7 @@ paths: schema: type: string example: Hello-World - - &271 + - &273 name: permission description: The permission to use to filter the results. in: query @@ -38651,7 +38816,7 @@ paths: schema: type: string example: issues_read - - &272 + - &274 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -38661,7 +38826,7 @@ paths: schema: type: string format: date-time - - &273 + - &275 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -38671,7 +38836,7 @@ paths: schema: type: string format: date-time - - &274 + - &276 name: token_id description: The ID of the token in: query @@ -38815,7 +38980,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38835,7 +39000,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: - - *76 + - *78 requestBody: required: true content: @@ -38901,7 +39066,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38962,7 +39127,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: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38982,11 +39147,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39007,17 +39172,17 @@ 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: - - *76 + - *78 - *17 - *19 - - *268 - - *62 - - *269 - *270 + - *62 - *271 - *272 - *273 - *274 + - *275 + - *276 responses: '500': *55 '422': *15 @@ -39146,7 +39311,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39166,7 +39331,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: - - *76 + - *78 requestBody: required: true content: @@ -39226,7 +39391,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: - - *76 + - *78 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -39278,7 +39443,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: - - *76 + - *78 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -39297,11 +39462,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39323,7 +39488,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -39341,7 +39506,7 @@ paths: type: integer configurations: type: array - items: &275 + items: &277 title: Organization private registry description: Private registry configuration for an organization type: object @@ -39470,7 +39635,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *68 + Link: *70 '400': *14 '404': *6 x-github: @@ -39493,7 +39658,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -39812,7 +39977,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &276 + org-private-registry-with-selected-visibility: &278 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -39853,7 +40018,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: - - *76 + - *78 responses: '200': description: Response @@ -39879,7 +40044,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -39901,16 +40066,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *275 + schema: *277 examples: - default: *276 + default: *278 '404': *6 x-github: githubCloudOnly: false @@ -39932,8 +40097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 requestBody: required: true content: @@ -40109,8 +40274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *76 - - *167 + - *78 + - *169 responses: '204': description: Response @@ -40133,7 +40298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *76 + - *78 - name: q description: Limit results to projects of the specified type. in: query @@ -40150,7 +40315,7 @@ paths: application/json: schema: type: array - items: &277 + items: &279 title: Projects v2 Project description: A projects v2 project type: object @@ -40220,7 +40385,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &793 + properties: &795 id: type: number description: The unique identifier of the status update. @@ -40268,7 +40433,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &794 + required: &796 - id - node_id - created_at @@ -40293,7 +40458,7 @@ paths: - deleted_at - deleted_by examples: - default: &278 + default: &280 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -40376,7 +40541,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40396,24 +40561,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &279 + - &281 name: project_number description: The project's number. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: - default: *278 + default: *280 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -40433,8 +40598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *76 - - *279 + - *78 + - *281 requestBody: required: true description: Details of the draft item to create in the project. @@ -40468,7 +40633,7 @@ paths: description: Response content: application/json: - schema: &285 + schema: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -40481,8 +40646,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *86 - - &482 + - *88 + - &484 title: Pull Request Simple description: Pull Request Simple type: object @@ -40588,8 +40753,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *280 - required: *281 + properties: *282 + required: *283 nullable: true active_lock_reason: type: string @@ -40632,7 +40797,7 @@ paths: items: *4 requested_teams: type: array - items: *195 + items: *197 head: type: object properties: @@ -40640,7 +40805,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -40663,7 +40828,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: @@ -40682,7 +40847,7 @@ paths: _links: type: object properties: - comments: &282 + comments: &284 title: Link description: Hypermedia Link type: object @@ -40691,13 +40856,13 @@ paths: type: string required: - href - commits: *282 - statuses: *282 - html: *282 - issue: *282 - review_comments: *282 - review_comment: *282 - self: *282 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -40707,8 +40872,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: &596 + author_association: *85 + auto_merge: &598 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40882,7 +41047,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &284 + content_type: &286 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -40922,7 +41087,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &286 + draft_issue: &288 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -40996,8 +41161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *279 - - *76 + - *281 + - *78 - *17 - *47 - *48 @@ -41008,7 +41173,7 @@ paths: application/json: schema: type: array - items: &283 + items: &285 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -41158,7 +41323,7 @@ paths: - updated_at - project_url examples: - default: &723 + default: &725 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41269,7 +41434,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41288,8 +41453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *279 - - *76 + - *281 + - *78 requestBody: required: true content: @@ -41335,7 +41500,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &724 + items: &726 type: object properties: name: @@ -41372,7 +41537,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &725 + iteration_configuration: &727 type: object description: The configuration for iteration fields. properties: @@ -41422,7 +41587,7 @@ paths: value: name: Due date data_type: date - single_select_field: &726 + single_select_field: &728 summary: Create a single select field value: name: Priority @@ -41449,7 +41614,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &727 + iteration_field: &729 summary: Create an iteration field value: name: Sprint @@ -41473,9 +41638,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *283 + schema: *285 examples: - text_field: &728 + text_field: &730 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41484,7 +41649,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: &729 + number_field: &731 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41493,7 +41658,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: &730 + date_field: &732 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41502,7 +41667,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: &731 + single_select_field: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41536,7 +41701,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &732 + iteration_field: &734 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41581,23 +41746,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *279 - - &733 + - *281 + - &735 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *283 + schema: *285 examples: - default: &734 + default: &736 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41632,7 +41797,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -41653,8 +41818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *279 - - *76 + - *281 + - *78 - 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. @@ -41686,7 +41851,7 @@ paths: application/json: schema: type: array - items: &287 + items: &289 title: Projects v2 Item description: An item belonging to a project type: object @@ -41702,7 +41867,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: *284 + content_type: *286 content: type: object additionalProperties: true @@ -41745,7 +41910,7 @@ paths: - updated_at - archived_at examples: - default: &288 + default: &290 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -42422,7 +42587,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -42442,8 +42607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *76 - - *279 + - *78 + - *281 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -42513,22 +42678,22 @@ paths: description: Response content: application/json: - schema: *285 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *286 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *286 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *286 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *286 + value: *288 '304': *37 '403': *29 '401': *25 @@ -42548,9 +42713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *279 - - *76 - - &289 + - *281 + - *78 + - &291 name: item_id description: The unique identifier of the project item. in: path @@ -42576,11 +42741,11 @@ paths: description: Response content: application/json: - schema: *287 + schema: *289 examples: - default: *288 + default: *290 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -42599,9 +42764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *279 - - *76 - - *289 + - *281 + - *78 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -42671,13 +42836,13 @@ paths: description: Response content: application/json: - schema: *287 + schema: *289 examples: - text_field: *288 - number_field: *288 - date_field: *288 - single_select_field: *288 - iteration_field: *288 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *25 '403': *29 '404': *6 @@ -42697,9 +42862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *279 - - *76 - - *289 + - *281 + - *78 + - *291 responses: '204': description: Response @@ -42722,8 +42887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *76 - - *279 + - *78 + - *281 requestBody: required: true content: @@ -42794,7 +42959,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &715 + schema: &717 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42892,7 +43057,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &290 + value: &292 value: id: 1 number: 1 @@ -42938,10 +43103,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *290 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *290 + value: *292 '304': *37 '403': *29 '401': *25 @@ -42969,9 +43134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *279 - - *76 - - &735 + - *281 + - *78 + - &737 name: view_number description: The number that identifies the project view. in: path @@ -43003,11 +43168,11 @@ paths: application/json: schema: type: array - items: *287 + items: *289 examples: - default: *288 + default: *290 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -43030,7 +43195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -43038,7 +43203,7 @@ paths: application/json: schema: type: array - items: &291 + items: &293 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -43106,7 +43271,7 @@ paths: - property_name - value_type examples: - default: &292 + default: &294 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -43155,7 +43320,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -43166,7 +43331,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *291 + items: *293 minItems: 1 maxItems: 100 required: @@ -43196,9 +43361,9 @@ paths: application/json: schema: type: array - items: *291 + items: *293 examples: - default: *292 + default: *294 '403': *29 '404': *6 x-github: @@ -43219,8 +43384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *76 - - &293 + - *78 + - &295 name: custom_property_name description: The custom property name in: path @@ -43232,9 +43397,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *293 examples: - default: &294 + default: &296 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -43268,8 +43433,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: - - *76 - - *293 + - *78 + - *295 requestBody: required: true content: @@ -43340,9 +43505,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *293 examples: - default: *294 + default: *296 '403': *29 '404': *6 x-github: @@ -43365,8 +43530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *76 - - *293 + - *78 + - *295 responses: '204': *61 '403': *29 @@ -43389,7 +43554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 - *17 - *19 - name: repository_query @@ -43427,7 +43592,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &295 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -43466,7 +43631,7 @@ paths: - property_name: team value: octocat headers: - Link: *68 + Link: *70 '403': *29 '404': *6 x-github: @@ -43494,7 +43659,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: - - *76 + - *78 requestBody: required: true content: @@ -43514,7 +43679,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *295 + items: *297 required: - repository_names - properties @@ -43555,7 +43720,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *76 + - *78 - *17 - *19 responses: @@ -43567,9 +43732,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43586,8 +43751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response if user is a public member @@ -43611,8 +43776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -43633,8 +43798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *72 + - *78 + - *74 responses: '204': description: Response @@ -43658,7 +43823,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *76 + - *78 - name: type description: Specifies the types of repositories you want returned. in: query @@ -43704,11 +43869,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43727,7 +43892,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *76 + - *78 requestBody: required: true content: @@ -43908,7 +44073,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &349 title: Full Repository description: Full Repository type: object @@ -44196,9 +44361,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *296 - required: *297 - x-github-breaking-changes: *298 + properties: *298 + required: *299 + x-github-breaking-changes: *300 nullable: true temp_clone_token: type: string @@ -44285,8 +44450,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -44295,8 +44460,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *80 - source: *80 + parent: *82 + source: *82 forks: type: integer master_branch: @@ -44313,7 +44478,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &487 + properties: &489 url: type: string format: uri @@ -44329,12 +44494,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &488 + required: &490 - url - key - name - html_url - security_and_analysis: *299 + security_and_analysis: *301 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -44429,7 +44594,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &349 + default: &351 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44959,10 +45124,10 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - *17 - *19 - - &618 + - &620 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44980,7 +45145,7 @@ paths: application/json: schema: type: array - items: &326 + items: &328 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -45015,7 +45180,7 @@ paths: source: type: string description: The name of the source - enforcement: &302 + enforcement: &304 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -45028,7 +45193,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &303 + items: &305 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -45098,7 +45263,7 @@ paths: conditions: nullable: true anyOf: - - &300 + - &302 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -45122,7 +45287,7 @@ paths: match. items: type: string - - &304 + - &306 title: Organization ruleset conditions type: object description: |- @@ -45136,7 +45301,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *300 + - *302 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -45170,7 +45335,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *300 + - *302 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -45192,7 +45357,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *300 + - *302 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -45205,7 +45370,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &301 + items: &303 title: Repository ruleset property targeting definition type: object @@ -45238,17 +45403,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *301 + items: *303 required: - repository_property rules: type: array - items: &619 + items: &621 title: Repository Rule type: object description: A repository rule. oneOf: - - &305 + - &307 title: creation description: Only allow users with bypass permission to create matching refs. @@ -45260,7 +45425,7 @@ paths: type: string enum: - creation - - &306 + - &308 title: update description: Only allow users with bypass permission to update matching refs. @@ -45281,7 +45446,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &307 + - &309 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -45293,7 +45458,7 @@ paths: type: string enum: - deletion - - &308 + - &310 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -45305,7 +45470,7 @@ paths: type: string enum: - required_linear_history - - &617 + - &619 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -45383,7 +45548,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &309 + - &311 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -45407,7 +45572,7 @@ paths: type: string required: - required_deployment_environments - - &310 + - &312 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -45419,7 +45584,7 @@ paths: type: string enum: - required_signatures - - &311 + - &313 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -45525,7 +45690,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &312 + - &314 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -45573,7 +45738,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &313 + - &315 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -45585,7 +45750,7 @@ paths: type: string enum: - non_fast_forward - - &314 + - &316 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -45622,7 +45787,7 @@ paths: required: - operator - pattern - - &315 + - &317 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -45659,7 +45824,7 @@ paths: required: - operator - pattern - - &316 + - &318 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -45696,7 +45861,7 @@ paths: required: - operator - pattern - - &317 + - &319 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -45733,7 +45898,7 @@ paths: required: - operator - pattern - - &318 + - &320 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -45770,7 +45935,7 @@ paths: required: - operator - pattern - - &319 + - &321 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -45795,7 +45960,7 @@ paths: type: string required: - restricted_file_paths - - &320 + - &322 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -45819,7 +45984,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &321 + - &323 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -45842,7 +46007,7 @@ paths: type: string required: - restricted_file_extensions - - &322 + - &324 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -45867,7 +46032,7 @@ paths: maximum: 100 required: - max_file_size - - &323 + - &325 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -45917,7 +46082,7 @@ paths: - repository_id required: - workflows - - &324 + - &326 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -45978,7 +46143,7 @@ paths: - tool required: - code_scanning_tools - - &325 + - &327 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -46056,7 +46221,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 requestBody: description: Request body required: true @@ -46077,22 +46242,20 @@ paths: - push - repository default: branch - enforcement: *302 + enforcement: *304 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *303 - conditions: *304 + items: *305 + conditions: *306 rules: type: array description: An array of rules within the ruleset. - items: &328 + items: &330 title: Repository Rule type: object description: A repository rule. oneOf: - - *305 - - *306 - *307 - *308 - *309 @@ -46112,6 +46275,8 @@ paths: - *323 - *324 - *325 + - *326 + - *327 required: - name - enforcement @@ -46149,9 +46314,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: &327 + default: &329 value: id: 21 name: super cool ruleset @@ -46206,8 +46371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *76 - - &620 + - *78 + - &622 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 @@ -46222,7 +46387,7 @@ paths: in: query schema: type: string - - &621 + - &623 name: time_period description: |- The time period to filter by. @@ -46238,14 +46403,14 @@ paths: - week - month default: day - - &622 + - &624 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 - - &623 + - &625 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -46265,7 +46430,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &626 title: Rule Suites description: Response type: array @@ -46320,7 +46485,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &625 + default: &627 value: - id: 21 actor_id: 12 @@ -46363,8 +46528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *76 - - &626 + - *78 + - &628 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -46380,7 +46545,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &629 title: Rule Suite description: Response type: object @@ -46479,7 +46644,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &628 + default: &630 value: id: 21 actor_id: 12 @@ -46540,7 +46705,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46552,9 +46717,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: *327 + default: *329 '404': *6 '500': *55 put: @@ -46572,7 +46737,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46598,16 +46763,16 @@ paths: - tag - push - repository - enforcement: *302 + enforcement: *304 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *303 - conditions: *304 + items: *305 + conditions: *306 rules: description: An array of rules within the ruleset. type: array - items: *328 + items: *330 examples: default: value: @@ -46642,9 +46807,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: *327 + default: *329 '404': *6 '422': *15 '500': *55 @@ -46663,7 +46828,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46686,7 +46851,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *76 + - *78 - *17 - *19 - name: ruleset_id @@ -46702,7 +46867,7 @@ paths: application/json: schema: type: array - items: &329 + items: &331 title: Ruleset version type: object description: The historical version of a ruleset @@ -46726,7 +46891,7 @@ paths: type: string format: date-time examples: - default: &630 + default: &632 value: - version_id: 3 actor: @@ -46761,7 +46926,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46779,9 +46944,9 @@ paths: description: Response content: application/json: - schema: &631 + schema: &633 allOf: - - *329 + - *331 - type: object required: - state @@ -46850,8 +47015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *76 - - &632 + - *78 + - &634 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46862,7 +47027,7 @@ paths: enum: - open - resolved - - &633 + - &635 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46872,7 +47037,7 @@ paths: required: false schema: type: string - - &634 + - &636 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46883,7 +47048,7 @@ paths: required: false schema: type: string - - &635 + - &637 name: exclude_providers in: query description: |- @@ -46894,7 +47059,7 @@ paths: required: false schema: type: string - - &636 + - &638 name: providers in: query description: |- @@ -46905,7 +47070,7 @@ paths: required: false schema: type: string - - &637 + - &639 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46914,7 +47079,7 @@ paths: required: false schema: type: string - - &638 + - &640 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46933,7 +47098,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &639 + - &641 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. @@ -46948,7 +47113,7 @@ paths: - *62 - *19 - *17 - - &640 + - &642 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 @@ -46958,7 +47123,7 @@ paths: required: false schema: type: string - - &641 + - &643 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 @@ -46968,7 +47133,7 @@ paths: required: false schema: type: string - - &642 + - &644 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46977,7 +47142,7 @@ paths: required: false schema: type: string - - &643 + - &645 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46986,7 +47151,7 @@ paths: schema: type: boolean default: false - - &644 + - &646 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46995,7 +47160,7 @@ paths: schema: type: boolean default: false - - &645 + - &647 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -47014,8 +47179,8 @@ paths: items: type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -47023,21 +47188,21 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &646 + state: &648 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: &647 + resolution: &649 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -47154,8 +47319,8 @@ paths: pull request. ' - oneOf: &648 - - &650 + oneOf: &650 + - &652 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -47213,7 +47378,7 @@ paths: - blob_url - commit_sha - commit_url - - &651 + - &653 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. @@ -47268,7 +47433,7 @@ paths: - page_url - commit_sha - commit_url - - &652 + - &654 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -47288,7 +47453,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &653 + - &655 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -47308,7 +47473,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &654 + - &656 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -47328,7 +47493,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &655 + - &657 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -47342,7 +47507,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &656 + - &658 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -47356,7 +47521,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &657 + - &659 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -47370,7 +47535,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &658 + - &660 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. @@ -47390,7 +47555,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &659 + - &661 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. @@ -47410,7 +47575,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &660 + - &662 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. @@ -47430,7 +47595,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &661 + - &663 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. @@ -47450,7 +47615,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &662 + - &664 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. @@ -47674,9 +47839,9 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47701,7 +47866,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 responses: '200': description: Response @@ -47713,7 +47878,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &331 + pattern_config_version: &333 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -47722,7 +47887,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &330 + items: &332 type: object properties: token_type: @@ -47788,7 +47953,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *330 + items: *332 examples: default: value: @@ -47837,7 +48002,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 requestBody: required: true content: @@ -47845,7 +48010,7 @@ paths: schema: type: object properties: - pattern_config_version: *331 + pattern_config_version: *333 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -47871,7 +48036,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *331 + custom_pattern_version: *333 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -47925,7 +48090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *76 + - *78 - *62 - name: sort description: The property to sort the results by. @@ -47969,7 +48134,7 @@ paths: application/json: schema: type: array - items: &666 + items: &668 description: A repository security advisory. type: object properties: @@ -48189,7 +48354,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *334 credits_detailed: type: array nullable: true @@ -48199,7 +48364,7 @@ paths: type: object properties: user: *4 - type: *332 + type: *334 state: type: string description: The state of the user's acceptance of the @@ -48223,7 +48388,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *195 + items: *197 private_fork: readOnly: true nullable: true @@ -48292,7 +48457,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &667 + default: &669 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -48671,7 +48836,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *76 + - *78 responses: '200': description: Response @@ -48679,7 +48844,7 @@ paths: application/json: schema: type: array - items: *333 + items: *335 examples: default: value: @@ -48719,8 +48884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -48745,8 +48910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response @@ -48773,7 +48938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Immutable releases settings response @@ -48822,7 +48987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -48879,7 +49044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 - *19 - *17 responses: @@ -48897,9 +49062,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *171 + default: *173 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48918,7 +49083,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *76 + - *78 requestBody: required: true content: @@ -48967,8 +49132,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -48990,8 +49155,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: - - *76 - - *148 + - *78 + - *150 responses: '204': description: Response @@ -49014,7 +49179,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -49032,7 +49197,7 @@ paths: type: integer network_configurations: type: array - items: &334 + items: &336 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -49103,7 +49268,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49122,7 +49287,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: - - *76 + - *78 requestBody: required: true content: @@ -49178,9 +49343,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: &335 + default: &337 value: id: 123456789ABCDEF name: My network configuration @@ -49208,8 +49373,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: - - *76 - - &336 + - *78 + - &338 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -49221,11 +49386,11 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49244,8 +49409,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: - - *76 - - *336 + - *78 + - *338 requestBody: required: true content: @@ -49298,9 +49463,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49319,8 +49484,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: - - *76 - - *336 + - *78 + - *338 responses: '204': description: Response @@ -49343,7 +49508,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: - - *76 + - *78 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -49397,7 +49562,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49427,8 +49592,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *76 - *78 + - *80 - 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`). @@ -49460,13 +49625,13 @@ paths: application/json: schema: type: array - items: *337 + items: *339 examples: - default: *338 + default: *340 '500': *55 '403': *29 '404': *6 - '422': *339 + '422': *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49484,7 +49649,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *76 + - *78 - *17 - *19 - name: team_type @@ -49506,11 +49671,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 headers: - Link: *68 + Link: *70 '403': *29 x-github: githubCloudOnly: false @@ -49530,7 +49695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *76 + - *78 requestBody: required: true content: @@ -49602,7 +49767,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &342 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -49665,8 +49830,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *258 - required: *259 + properties: *260 + required: *261 nullable: true members_count: type: integer @@ -49929,7 +50094,7 @@ paths: - repos_count - organization examples: - default: &341 + default: &343 value: id: 1 node_id: MDQ6VGVhbTE= @@ -50010,16 +50175,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *76 - *78 + - *80 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '404': *6 x-github: githubCloudOnly: false @@ -50040,8 +50205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *76 - *78 + - *80 requestBody: required: false content: @@ -50103,16 +50268,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '201': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '404': *6 '422': *15 '403': *29 @@ -50137,12 +50302,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *76 - *78 + - *80 responses: '204': description: Response - '422': &342 + '422': &344 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -50165,8 +50330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -50176,12 +50341,12 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: - Link: *68 - '422': *342 + Link: *70 + '422': *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50201,8 +50366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *76 - *78 + - *80 - name: role description: Filters members returned by their role in the team. in: query @@ -50225,9 +50390,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50255,15 +50420,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '200': description: Response content: application/json: - schema: &343 + schema: &345 title: Team Membership description: Team Membership type: object @@ -50290,7 +50455,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &682 + response-if-user-is-a-team-maintainer: &684 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -50326,9 +50491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 requestBody: required: false content: @@ -50353,9 +50518,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: - response-if-users-membership-with-team-is-now-pending: &683 + response-if-users-membership-with-team-is-now-pending: &685 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -50390,9 +50555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *76 - *78 - - *72 + - *80 + - *74 responses: '204': description: Response @@ -50418,8 +50583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -50429,11 +50594,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50460,16 +50625,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *76 - *78 - - *344 - - *345 + - *80 + - *346 + - *347 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &684 + schema: &686 title: Team Repository description: A team's access to a repository. type: object @@ -50492,8 +50657,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true forks: type: integer @@ -51123,10 +51288,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *76 - *78 - - *344 - - *345 + - *80 + - *346 + - *347 requestBody: required: false content: @@ -51171,10 +51336,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *76 - *78 - - *344 - - *345 + - *80 + - *346 + - *347 responses: '204': description: Response @@ -51198,8 +51363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *76 - *78 + - *80 - *17 - *19 responses: @@ -51209,9 +51374,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: &685 + response-if-child-teams-exist: &687 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51239,7 +51404,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51264,7 +51429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *76 + - *78 - name: security_product in: path description: The security feature to enable or disable. @@ -51365,7 +51530,7 @@ paths: resources: type: object properties: - core: &346 + core: &348 title: Rate Limit type: object properties: @@ -51382,21 +51547,21 @@ paths: - remaining - reset - used - graphql: *346 - search: *346 - code_search: *346 - source_import: *346 - integration_manifest: *346 - code_scanning_upload: *346 - actions_runner_registration: *346 - scim: *346 - dependency_snapshots: *346 - dependency_sbom: *346 - code_scanning_autofix: *346 + graphql: *348 + search: *348 + code_search: *348 + source_import: *348 + integration_manifest: *348 + code_scanning_upload: *348 + actions_runner_registration: *348 + scim: *348 + dependency_snapshots: *348 + dependency_sbom: *348 + code_scanning_autofix: *348 required: - core - search - rate: *346 + rate: *348 required: - rate - resources @@ -51515,14 +51680,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: default-response: summary: Default response @@ -52033,7 +52198,7 @@ paths: version: '2026-03-10' '403': *29 '404': *6 - '301': *348 + '301': *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52051,8 +52216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -52350,10 +52515,10 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *349 - '307': &350 + default: *351 + '307': &352 description: Temporary Redirect content: application/json: @@ -52382,8 +52547,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -52405,7 +52570,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *350 + '307': *352 '404': *6 '409': *54 x-github: @@ -52429,11 +52594,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 - - &383 + - &385 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -52456,7 +52621,7 @@ paths: type: integer artifacts: type: array - items: &351 + items: &353 title: Artifact description: An artifact type: object @@ -52534,7 +52699,7 @@ paths: - expires_at - updated_at examples: - default: &384 + default: &386 value: total_count: 2 artifacts: @@ -52573,7 +52738,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52595,9 +52760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *344 - - *345 - - &352 + - *346 + - *347 + - &354 name: artifact_id description: The unique identifier of the artifact. in: path @@ -52609,7 +52774,7 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: default: value: @@ -52647,9 +52812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *344 - - *345 - - *352 + - *346 + - *347 + - *354 responses: '204': description: Response @@ -52673,9 +52838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *344 - - *345 - - *352 + - *346 + - *347 + - *354 - name: archive_format in: path required: true @@ -52685,11 +52850,11 @@ paths: '302': description: Response headers: - Location: &506 + Location: &508 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': &547 + '410': &549 description: Gone content: application/json: @@ -52714,14 +52879,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &353 + schema: &355 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -52754,13 +52919,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *353 + schema: *355 examples: selected_actions: *42 responses: @@ -52789,14 +52954,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &354 + schema: &356 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -52829,13 +52994,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *354 + schema: *356 examples: selected_actions: *44 responses: @@ -52866,14 +53031,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: default: value: @@ -52899,11 +53064,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 - - &356 + - &358 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 @@ -52937,7 +53102,7 @@ paths: description: Response content: application/json: - schema: &357 + schema: &359 title: Repository actions caches description: Repository actions caches type: object @@ -52979,7 +53144,7 @@ paths: - total_count - actions_caches examples: - default: &358 + default: &360 value: total_count: 1 actions_caches: @@ -52991,7 +53156,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53011,23 +53176,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: - - *344 - - *345 + - *346 + - *347 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *356 + - *358 responses: '200': description: Response content: application/json: - schema: *357 + schema: *359 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53047,8 +53212,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: - - *344 - - *345 + - *346 + - *347 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -53079,9 +53244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *344 - - *345 - - &359 + - *346 + - *347 + - &361 name: job_id description: The unique identifier of the job. in: path @@ -53093,7 +53258,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &389 title: Job description: Information of a job execution in a workflow run type: object @@ -53400,9 +53565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *344 - - *345 - - *359 + - *346 + - *347 + - *361 responses: '302': description: Response @@ -53430,9 +53595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *344 - - *345 - - *359 + - *346 + - *347 + - *361 requestBody: required: false content: @@ -53453,7 +53618,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -53477,8 +53642,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Status response @@ -53528,8 +53693,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -53563,7 +53728,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -53592,8 +53757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -53611,7 +53776,7 @@ paths: type: integer secrets: type: array - items: &389 + items: &391 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -53631,7 +53796,7 @@ paths: - created_at - updated_at examples: - default: &390 + default: &392 value: total_count: 2 secrets: @@ -53642,7 +53807,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53664,9 +53829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *344 - - *345 - - *360 + - *346 + - *347 + - *362 - *19 responses: '200': @@ -53683,7 +53848,7 @@ paths: type: integer variables: type: array - items: &393 + items: &395 title: Actions Variable type: object properties: @@ -53713,7 +53878,7 @@ paths: - created_at - updated_at examples: - default: &394 + default: &396 value: total_count: 2 variables: @@ -53726,7 +53891,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53746,8 +53911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -53756,12 +53921,12 @@ paths: schema: type: object properties: - enabled: &362 + enabled: &364 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *144 - selected_actions_url: *361 - sha_pinning_required: *145 + allowed_actions: *146 + selected_actions_url: *363 + sha_pinning_required: *147 required: - enabled examples: @@ -53789,8 +53954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -53801,9 +53966,9 @@ paths: schema: type: object properties: - enabled: *362 - allowed_actions: *144 - sha_pinning_required: *145 + enabled: *364 + allowed_actions: *146 + sha_pinning_required: *147 required: - enabled examples: @@ -53833,14 +53998,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &363 + schema: &365 type: object properties: access_level: @@ -53857,7 +54022,7 @@ paths: required: - access_level examples: - default: &364 + default: &366 value: access_level: organization x-github: @@ -53881,15 +54046,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *363 + schema: *365 examples: - default: *364 + default: *366 responses: '204': description: Response @@ -53913,14 +54078,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -53944,8 +54109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Empty response for successful settings update @@ -53955,7 +54120,7 @@ paths: required: true content: application/json: - schema: *366 + schema: *368 examples: default: summary: Set retention days @@ -53979,16 +54144,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *146 + schema: *148 examples: - default: *367 + default: *369 '404': *6 x-github: enabledForGitHubApps: true @@ -54007,8 +54172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -54018,7 +54183,7 @@ paths: required: true content: application/json: - schema: *146 + schema: *148 examples: default: summary: Set approval policy to first time contributors @@ -54042,16 +54207,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *147 + default: *149 '403': *29 '404': *6 x-github: @@ -54071,15 +54236,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *369 + schema: *371 examples: - default: *147 + default: *149 responses: '204': description: Empty response for successful settings update @@ -54103,16 +54268,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *149 + schema: *151 examples: - default: *150 + default: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -54131,8 +54296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -54140,9 +54305,9 @@ paths: required: false content: application/json: - schema: *149 + schema: *151 examples: - selected_actions: *150 + selected_actions: *152 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -54164,16 +54329,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54194,8 +54359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Success response @@ -54206,9 +54371,9 @@ paths: required: true content: application/json: - schema: *371 + schema: *373 examples: - default: *154 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54235,8 +54400,8 @@ paths: in: query schema: type: string - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -54254,11 +54419,11 @@ paths: type: integer runners: type: array - items: *161 + items: *163 examples: - default: *162 + default: *164 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54280,8 +54445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -54289,9 +54454,9 @@ paths: application/json: schema: type: array - items: *372 + items: *374 examples: - default: *373 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54313,8 +54478,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -54357,7 +54522,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *374 + '201': *376 '404': *6 '422': *7 '409': *54 @@ -54388,16 +54553,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *375 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54425,16 +54590,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '201': description: Response content: application/json: - schema: *163 + schema: *165 examples: - default: *376 + default: *378 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54456,17 +54621,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 responses: '200': description: Response content: application/json: - schema: *161 + schema: *163 examples: - default: *377 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54487,9 +54652,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 responses: '204': description: Response @@ -54515,11 +54680,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 responses: - '200': *165 + '200': *167 '404': *6 x-github: githubCloudOnly: false @@ -54541,9 +54706,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 requestBody: required: true content: @@ -54567,7 +54732,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -54591,9 +54756,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 requestBody: required: true content: @@ -54618,7 +54783,7 @@ paths: - gpu - accelerated responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -54642,11 +54807,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: - - *344 - - *345 - - *160 + - *346 + - *347 + - *162 responses: - '200': *378 + '200': *380 '404': *6 x-github: githubCloudOnly: false @@ -54673,12 +54838,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: - - *344 - - *345 - - *160 - - *379 + - *346 + - *347 + - *162 + - *381 responses: - '200': *165 + '200': *167 '404': *6 '422': *7 x-github: @@ -54704,9 +54869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *344 - - *345 - - &397 + - *346 + - *347 + - &399 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. @@ -54714,7 +54879,7 @@ paths: required: false schema: type: string - - &398 + - &400 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -54722,7 +54887,7 @@ paths: required: false schema: type: string - - &399 + - &401 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -54731,7 +54896,7 @@ paths: required: false schema: type: string - - &400 + - &402 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 @@ -54758,7 +54923,7 @@ paths: - pending - *17 - *19 - - &401 + - &403 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)." @@ -54767,7 +54932,7 @@ paths: schema: type: string format: date-time - - &380 + - &382 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -54776,13 +54941,13 @@ paths: schema: type: boolean default: false - - &402 + - &404 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &403 + - &405 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -54805,7 +54970,7 @@ paths: type: integer workflow_runs: type: array - items: &381 + items: &383 title: Workflow Run description: An invocation of a workflow type: object @@ -54900,7 +55065,7 @@ paths: that triggered the run. type: array nullable: true - items: *91 + items: *93 created_at: type: string format: date-time @@ -54953,7 +55118,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &425 + properties: &427 id: type: string description: SHA for the commit @@ -55004,7 +55169,7 @@ paths: - name - email nullable: true - required: &426 + required: &428 - id - tree_id - message @@ -55012,8 +55177,8 @@ paths: - author - committer nullable: true - repository: *159 - head_repository: *159 + repository: *161 + head_repository: *161 head_repository_id: type: integer example: 5 @@ -55051,7 +55216,7 @@ paths: - workflow_url - pull_requests examples: - default: &404 + default: &406 value: total_count: 1 workflow_runs: @@ -55265,7 +55430,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55287,24 +55452,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *344 - - *345 - - &382 + - *346 + - *347 + - &384 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *380 + - *382 responses: '200': description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: &385 + default: &387 value: id: 30433642 name: Build @@ -55545,9 +55710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '204': description: Response @@ -55570,9 +55735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '200': description: Response @@ -55691,15 +55856,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: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -55726,12 +55891,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 - *17 - *19 - - *383 + - *385 - *62 responses: '200': @@ -55748,11 +55913,11 @@ paths: type: integer artifacts: type: array - items: *351 + items: *353 examples: - default: *384 + default: *386 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55774,25 +55939,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *344 - - *345 - - *382 - - &386 + - *346 + - *347 + - *384 + - &388 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *380 + - *382 responses: '200': description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: *385 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55815,10 +55980,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *344 - - *345 - - *382 - - *386 + - *346 + - *347 + - *384 + - *388 - *17 - *19 responses: @@ -55836,9 +56001,9 @@ paths: type: integer jobs: type: array - items: *387 + items: *389 examples: - default: &388 + default: &390 value: total_count: 1 jobs: @@ -55927,7 +56092,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -55951,10 +56116,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *344 - - *345 - - *382 - - *386 + - *346 + - *347 + - *384 + - *388 responses: '302': description: Response @@ -55982,15 +56147,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56017,9 +56182,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: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 requestBody: required: true content: @@ -56086,15 +56251,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '202': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56121,9 +56286,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 - 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 @@ -56153,11 +56318,11 @@ paths: type: integer jobs: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56180,9 +56345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '302': description: Response @@ -56209,9 +56374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '204': description: Response @@ -56238,9 +56403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '200': description: Response @@ -56300,7 +56465,7 @@ paths: items: type: object properties: - type: &513 + type: &515 type: string description: The type of reviewer. enum: @@ -56310,7 +56475,7 @@ paths: reviewer: anyOf: - *4 - - *195 + - *197 required: - environment - wait_timer @@ -56385,9 +56550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 requestBody: required: true content: @@ -56434,12 +56599,12 @@ paths: application/json: schema: type: array - items: &508 + items: &510 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &755 + properties: &757 url: type: string format: uri @@ -56522,9 +56687,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - required: &756 + properties: *83 + required: *84 + required: &758 - id - node_id - sha @@ -56540,7 +56705,7 @@ paths: - created_at - updated_at examples: - default: &509 + default: &511 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -56596,9 +56761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 requestBody: required: false content: @@ -56619,7 +56784,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56642,9 +56807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 requestBody: required: false content: @@ -56665,7 +56830,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -56697,9 +56862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *344 - - *345 - - *382 + - *346 + - *347 + - *384 responses: '200': description: Response @@ -56836,8 +57001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -56855,11 +57020,11 @@ paths: type: integer secrets: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56882,16 +57047,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *392 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56913,17 +57078,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &526 + default: &528 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56949,9 +57114,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 requestBody: required: true content: @@ -56982,7 +57147,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -57008,9 +57173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '204': description: Response @@ -57035,9 +57200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *344 - - *345 - - *360 + - *346 + - *347 + - *362 - *19 responses: '200': @@ -57054,11 +57219,11 @@ paths: type: integer variables: type: array - items: *393 + items: *395 examples: - default: *394 + default: *396 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57079,8 +57244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -57107,7 +57272,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -57132,17 +57297,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *344 - - *345 - - *170 + - *346 + - *347 + - *172 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: &527 + default: &529 value: name: USERNAME value: octocat @@ -57168,9 +57333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *344 - - *345 - - *170 + - *346 + - *347 + - *172 requestBody: required: true content: @@ -57212,9 +57377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *344 - - *345 - - *170 + - *346 + - *347 + - *172 responses: '204': description: Response @@ -57239,8 +57404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -57258,7 +57423,7 @@ paths: type: integer workflows: type: array - items: &395 + items: &397 title: Workflow description: A GitHub Actions workflow type: object @@ -57342,7 +57507,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57365,9 +57530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *344 - - *345 - - &396 + - *346 + - *347 + - &398 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -57382,7 +57547,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: default: value: @@ -57415,9 +57580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *344 - - *345 - - *396 + - *346 + - *347 + - *398 responses: '204': description: Response @@ -57442,9 +57607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *344 - - *345 - - *396 + - *346 + - *347 + - *398 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -57539,9 +57704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *344 - - *345 - - *396 + - *346 + - *347 + - *398 responses: '204': description: Response @@ -57568,19 +57733,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *344 - - *345 - - *396 - - *397 + - *346 + - *347 - *398 - *399 - *400 - - *17 - - *19 - *401 - - *380 - *402 + - *17 + - *19 - *403 + - *382 + - *404 + - *405 responses: '200': description: Response @@ -57596,11 +57761,11 @@ paths: type: integer workflow_runs: type: array - items: *381 + items: *383 examples: - default: *404 + default: *406 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57630,9 +57795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *344 - - *345 - - *396 + - *346 + - *347 + - *398 responses: '200': description: Response @@ -57693,8 +57858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *344 - - *345 + - *346 + - *347 - *62 - *17 - *47 @@ -57839,7 +58004,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *7 x-github: githubCloudOnly: false @@ -57858,8 +58023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -57871,9 +58036,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -57896,8 +58061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *344 - - *345 + - *346 + - *347 - name: assignee in: path required: true @@ -57933,8 +58098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -58044,8 +58209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *47 - *48 @@ -58102,7 +58267,7 @@ paths: initiator: type: string examples: - default: *405 + default: *407 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58136,8 +58301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -58145,7 +58310,7 @@ paths: application/json: schema: type: array - items: &406 + items: &408 title: Autolink reference description: An autolink reference. type: object @@ -58199,8 +58364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -58239,9 +58404,9 @@ paths: description: response content: application/json: - schema: *406 + schema: *408 examples: - default: &407 + default: &409 value: id: 1 key_prefix: TICKET- @@ -58272,9 +58437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *344 - - *345 - - &408 + - *346 + - *347 + - &410 name: autolink_id description: The unique identifier of the autolink. in: path @@ -58286,9 +58451,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *407 + default: *409 '404': *6 x-github: githubCloudOnly: false @@ -58308,9 +58473,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *344 - - *345 - - *408 + - *346 + - *347 + - *410 responses: '204': description: Response @@ -58334,8 +58499,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response if Dependabot is enabled @@ -58383,8 +58548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -58405,8 +58570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -58426,8 +58591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *344 - - *345 + - *346 + - *347 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -58465,7 +58630,7 @@ paths: - url protected: type: boolean - protection: &410 + protection: &412 title: Branch Protection description: Branch Protection type: object @@ -58507,7 +58672,7 @@ paths: required: - contexts - checks - enforce_admins: &413 + enforce_admins: &415 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -58522,7 +58687,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &415 + required_pull_request_reviews: &417 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -58543,7 +58708,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *195 + items: *197 apps: description: The list of apps with review dismissal access. @@ -58572,7 +58737,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *195 + items: *197 apps: description: The list of apps allowed to bypass pull request requirements. @@ -58598,7 +58763,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &412 + restrictions: &414 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58661,7 +58826,7 @@ paths: type: string teams: type: array - items: *195 + items: *197 apps: type: array items: @@ -58857,7 +59022,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -58875,9 +59040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *344 - - *345 - - &411 + - *346 + - *347 + - &413 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). @@ -58891,14 +59056,14 @@ paths: description: Response content: application/json: - schema: &421 + schema: &423 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &478 + commit: &480 title: Commit description: Commit type: object @@ -58932,7 +59097,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &409 + properties: &411 name: type: string example: '"Chris Wanstrath"' @@ -58948,7 +59113,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *409 + properties: *411 nullable: true message: type: string @@ -58969,7 +59134,7 @@ paths: required: - sha - url - verification: &533 + verification: &535 title: Verification type: object properties: @@ -59003,12 +59168,12 @@ paths: nullable: true oneOf: - *4 - - *168 + - *170 committer: nullable: true oneOf: - *4 - - *168 + - *170 parents: type: array items: @@ -59039,7 +59204,7 @@ paths: type: integer files: type: array - items: &491 + items: &493 title: Diff Entry description: Diff Entry type: object @@ -59123,7 +59288,7 @@ paths: - self protected: type: boolean - protection: *410 + protection: *412 protection_url: type: string format: uri @@ -59230,7 +59395,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *348 + '301': *350 '404': *6 x-github: githubCloudOnly: false @@ -59252,15 +59417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *410 + schema: *412 examples: default: value: @@ -59454,9 +59619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -59711,7 +59876,7 @@ paths: url: type: string format: uri - required_status_checks: &418 + required_status_checks: &420 title: Status Check Policy description: Status Check Policy type: object @@ -59787,7 +59952,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -59805,7 +59970,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 apps: type: array items: *5 @@ -59863,7 +60028,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *412 + restrictions: *414 required_conversation_resolution: type: object properties: @@ -59975,9 +60140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60002,17 +60167,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &414 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -60034,17 +60199,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *414 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60063,9 +60228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60090,17 +60255,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *415 + schema: *417 examples: - default: &416 + default: &418 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -60196,9 +60361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -60296,9 +60461,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *417 examples: - default: *416 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -60319,9 +60484,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60348,17 +60513,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &417 + default: &419 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -60381,17 +60546,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *417 + default: *419 '404': *6 x-github: githubCloudOnly: false @@ -60411,9 +60576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60438,17 +60603,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: &419 + default: &421 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -60474,9 +60639,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -60528,9 +60693,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: *419 + default: *421 '404': *6 '422': *15 x-github: @@ -60552,9 +60717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60578,9 +60743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response @@ -60614,9 +60779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -60683,9 +60848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -60749,9 +60914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: content: application/json: @@ -60817,15 +60982,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response content: application/json: - schema: *412 + schema: *414 examples: default: value: @@ -60916,9 +61081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '204': description: Response @@ -60941,9 +61106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response @@ -60953,7 +61118,7 @@ paths: type: array items: *5 examples: - default: &420 + default: &422 value: - id: 1 slug: octoapp @@ -61010,9 +61175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61046,7 +61211,7 @@ paths: type: array items: *5 examples: - default: *420 + default: *422 '422': *15 x-github: githubCloudOnly: false @@ -61067,9 +61232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61103,7 +61268,7 @@ paths: type: array items: *5 examples: - default: *420 + default: *422 '422': *15 x-github: githubCloudOnly: false @@ -61124,9 +61289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61160,7 +61325,7 @@ paths: type: array items: *5 examples: - default: *420 + default: *422 '422': *15 x-github: githubCloudOnly: false @@ -61182,9 +61347,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response @@ -61192,9 +61357,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -61214,9 +61379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -61252,9 +61417,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 '422': *15 x-github: githubCloudOnly: false @@ -61275,9 +61440,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: false content: @@ -61313,9 +61478,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 '422': *15 x-github: githubCloudOnly: false @@ -61336,9 +61501,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: content: application/json: @@ -61373,9 +61538,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 '422': *15 x-github: githubCloudOnly: false @@ -61397,9 +61562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 responses: '200': description: Response @@ -61409,7 +61574,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '404': *6 x-github: githubCloudOnly: false @@ -61433,9 +61598,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61468,7 +61633,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -61493,9 +61658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61528,7 +61693,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -61553,9 +61718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61588,7 +61753,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '422': *15 x-github: githubCloudOnly: false @@ -61615,9 +61780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 requestBody: required: true content: @@ -61639,7 +61804,7 @@ paths: description: Response content: application/json: - schema: *421 + schema: *423 examples: default: value: @@ -61755,8 +61920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -62035,7 +62200,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &424 title: CheckRun description: A check performed on the code of a given code change type: object @@ -62146,16 +62311,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 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: *91 - deployment: &748 + items: *93 + deployment: &750 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62222,8 +62387,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -62435,9 +62600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *344 - - *345 - - &423 + - *346 + - *347 + - &425 name: check_run_id description: The unique identifier of the check run. in: path @@ -62449,9 +62614,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *424 examples: - default: &424 + default: &426 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62551,9 +62716,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *344 - - *345 - - *423 + - *346 + - *347 + - *425 requestBody: required: true content: @@ -62793,9 +62958,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *424 examples: - default: *424 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62815,9 +62980,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *344 - - *345 - - *423 + - *346 + - *347 + - *425 - *17 - *19 responses: @@ -62892,7 +63057,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62912,15 +63077,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *344 - - *345 - - *423 + - *346 + - *347 + - *425 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -62958,8 +63123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -62981,7 +63146,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &427 + schema: &429 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -63045,7 +63210,7 @@ paths: nullable: true pull_requests: type: array - items: *91 + items: *93 nullable: true app: title: GitHub app @@ -63056,9 +63221,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - repository: *159 + properties: *83 + required: *84 + repository: *161 created_at: type: string format: date-time @@ -63067,12 +63232,12 @@ paths: type: string format: date-time nullable: true - head_commit: &776 + head_commit: &778 title: Simple Commit description: A commit. type: object - properties: *425 - required: *426 + properties: *427 + required: *428 latest_check_runs_count: type: integer check_runs_url: @@ -63100,7 +63265,7 @@ paths: - check_runs_url - pull_requests examples: - default: &428 + default: &430 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63391,9 +63556,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63412,8 +63577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -63474,7 +63639,7 @@ paths: required: - app_id - setting - repository: *159 + repository: *161 examples: default: value: @@ -63722,9 +63887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *344 - - *345 - - &429 + - *346 + - *347 + - &431 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63736,9 +63901,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63761,17 +63926,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *344 - - *345 - - *429 - - &484 + - *346 + - *347 + - *431 + - &486 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &485 + - &487 name: status description: Returns check runs with the specified `status`. in: query @@ -63810,9 +63975,9 @@ paths: type: integer check_runs: type: array - items: *422 + items: *424 examples: - default: &486 + default: &488 value: total_count: 1 check_runs: @@ -63894,7 +64059,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63914,15 +64079,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *344 - - *345 - - *429 + - *346 + - *347 + - *431 responses: '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -63949,21 +64114,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *344 - - *345 - - *430 - - *431 + - *346 + - *347 + - *432 + - *433 - *19 - *17 - - &448 + - &450 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: *432 - - &449 + schema: *434 + - &451 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63988,13 +64153,13 @@ paths: be returned. in: query required: false - schema: *433 + schema: *435 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *434 + schema: *436 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -64013,14 +64178,14 @@ paths: items: type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *435 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *437 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -64028,12 +64193,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *436 - dismissed_comment: *437 - rule: *438 - tool: *439 - most_recent_instance: *440 + dismissed_at: *185 + dismissed_reason: *438 + dismissed_comment: *439 + rule: *440 + tool: *441 + most_recent_instance: *442 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -64159,14 +64324,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &441 + '403': &443 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64186,9 +64351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *344 - - *345 - - &442 + - *346 + - *347 + - &444 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -64196,23 +64361,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: &443 + schema: &445 type: object properties: - number: *177 - created_at: *178 - updated_at: *179 - url: *180 - html_url: *181 - instances_url: *435 - state: *186 - fixed_at: *182 + number: *179 + created_at: *180 + updated_at: *181 + url: *182 + html_url: *183 + instances_url: *437 + state: *188 + fixed_at: *184 dismissed_by: title: Simple User description: A GitHub user. @@ -64220,9 +64385,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *183 - dismissed_reason: *436 - dismissed_comment: *437 + dismissed_at: *185 + dismissed_reason: *438 + dismissed_comment: *439 rule: type: object properties: @@ -64276,8 +64441,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *439 - most_recent_instance: *440 + tool: *441 + most_recent_instance: *442 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -64376,9 +64541,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64396,9 +64561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 requestBody: required: true content: @@ -64413,8 +64578,8 @@ paths: enum: - open - dismissed - dismissed_reason: *436 - dismissed_comment: *437 + dismissed_reason: *438 + dismissed_comment: *439 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64442,7 +64607,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: default: value: @@ -64518,14 +64683,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &447 + '403': &449 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': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64545,15 +64710,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: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 responses: '200': description: Response content: application/json: - schema: &444 + schema: &446 type: object properties: status: @@ -64579,13 +64744,13 @@ paths: - description - started_at examples: - default: &445 + default: &447 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &446 + '400': &448 description: Bad Request content: application/json: @@ -64596,9 +64761,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': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64621,29 +64786,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: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 responses: '200': description: OK content: application/json: - schema: *444 + schema: *446 examples: - default: *445 + default: *447 '202': description: Accepted content: application/json: - schema: *444 + schema: *446 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *446 + '400': *448 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64653,7 +64818,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64675,9 +64840,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: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 requestBody: required: false content: @@ -64722,12 +64887,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *446 - '403': *447 + '400': *448 + '403': *449 '404': *6 '422': description: Unprocessable Entity - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64747,13 +64912,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 - *19 - *17 - - *448 - - *449 + - *450 + - *451 responses: '200': description: Response @@ -64764,10 +64929,10 @@ paths: items: type: object properties: - ref: *432 - analysis_key: *450 - environment: *451 - category: *452 + ref: *434 + analysis_key: *452 + environment: *453 + category: *454 state: type: string description: State of a code scanning alert instance. @@ -64782,7 +64947,7 @@ paths: properties: text: type: string - location: *453 + location: *455 html_url: type: string classifications: @@ -64790,7 +64955,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: *454 + items: *456 examples: default: value: @@ -64827,9 +64992,9 @@ paths: end_column: 50 classifications: - source - '403': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64861,25 +65026,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *344 - - *345 - - *430 - - *431 + - *346 + - *347 + - *432 + - *433 - *19 - *17 - - *449 + - *451 - 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: *432 + schema: *434 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &455 + schema: &457 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -64900,23 +65065,23 @@ paths: application/json: schema: type: array - items: &456 + items: &458 type: object properties: - ref: *432 - commit_sha: &464 + ref: *434 + commit_sha: &466 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: *450 + analysis_key: *452 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *452 + category: *454 error: type: string example: error reading field xyz @@ -64940,8 +65105,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *455 - tool: *439 + sarif_id: *457 + tool: *441 deletable: type: boolean warning: @@ -65002,9 +65167,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65038,8 +65203,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: - - *344 - - *345 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -65052,7 +65217,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: response: summary: application/json response @@ -65106,14 +65271,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *441 + '403': *443 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65193,8 +65358,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: - - *344 - - *345 + - *346 + - *347 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -65247,9 +65412,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': *447 + '403': *449 '404': *6 - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65269,8 +65434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -65278,7 +65443,7 @@ paths: application/json: schema: type: array - items: &457 + items: &459 title: CodeQL Database description: A CodeQL database. type: object @@ -65389,9 +65554,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': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65418,8 +65583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -65431,7 +65596,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: default: value: @@ -65463,11 +65628,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': &495 + '302': &497 description: Found - '403': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65487,8 +65652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *344 - - *345 + - *346 + - *347 - name: language in: path description: The language of the CodeQL database. @@ -65498,9 +65663,9 @@ paths: responses: '204': description: Response - '403': *447 + '403': *449 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65526,8 +65691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -65536,7 +65701,7 @@ paths: type: object additionalProperties: false properties: - language: &458 + language: &460 type: string description: The language targeted by the CodeQL query enum: @@ -65616,7 +65781,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &462 + schema: &464 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65626,7 +65791,7 @@ paths: description: The ID of the variant analysis. controller_repo: *67 actor: *4 - query_language: *458 + query_language: *460 query_pack_url: type: string description: The download url for the query pack. @@ -65673,7 +65838,7 @@ paths: items: type: object properties: - repository: &459 + repository: &461 title: Repository Identifier description: Repository Identifier type: object @@ -65709,7 +65874,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &463 + analysis_status: &465 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65741,7 +65906,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &460 + access_mismatch_repos: &462 type: object properties: repository_count: @@ -65755,7 +65920,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: *459 + items: *461 required: - repository_count - repositories @@ -65777,8 +65942,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *460 - over_limit_repos: *460 + no_codeql_db_repos: *462 + over_limit_repos: *462 required: - access_mismatch_repos - not_found_repos @@ -65794,7 +65959,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &461 + value: &463 summary: Default response value: id: 1 @@ -65940,17 +66105,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *461 + value: *463 repository_lists: summary: Response for a successful variant analysis submission - value: *461 + value: *463 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65971,8 +66136,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: - - *344 - - *345 + - *346 + - *347 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65984,11 +66149,11 @@ paths: description: Response content: application/json: - schema: *462 + schema: *464 examples: - default: *461 + default: *463 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66009,7 +66174,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: - - *344 + - *346 - name: repo in: path description: The name of the controller repository. @@ -66044,7 +66209,7 @@ paths: type: object properties: repository: *67 - analysis_status: *463 + analysis_status: *465 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -66148,7 +66313,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66169,8 +66334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -66272,9 +66437,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *441 + '403': *443 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66293,8 +66458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -66361,7 +66526,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -66386,7 +66551,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *447 + '403': *449 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66400,7 +66565,7 @@ paths: content: application/json: schema: *3 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66457,8 +66622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -66466,7 +66631,7 @@ paths: schema: type: object properties: - commit_sha: *464 + commit_sha: *466 ref: type: string description: |- @@ -66524,7 +66689,7 @@ paths: schema: type: object properties: - id: *455 + id: *457 url: type: string description: The REST API URL for checking the status of the upload. @@ -66538,11 +66703,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': *447 + '403': *449 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66561,8 +66726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *344 - - *345 + - *346 + - *347 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66608,10 +66773,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': *441 + '403': *443 '404': description: Not Found if the sarif id does not match any upload - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66633,8 +66798,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -66715,8 +66880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *344 - - *345 + - *346 + - *347 - 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 @@ -66836,8 +67001,8 @@ paths: parameters: - *17 - *19 - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -66853,7 +67018,7 @@ paths: type: integer codespaces: type: array - items: *248 + items: *250 examples: default: value: @@ -67151,8 +67316,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -67215,22 +67380,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67254,8 +67419,8 @@ paths: parameters: - *17 - *19 - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -67319,8 +67484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -67355,14 +67520,14 @@ paths: type: integer machines: type: array - items: &691 + items: &693 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *466 - required: *467 + properties: *468 + required: *469 examples: - default: &692 + default: &694 value: total_count: 2 machines: @@ -67402,8 +67567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *344 - - *345 + - *346 + - *347 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67487,8 +67652,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: - - *344 - - *345 + - *346 + - *347 - 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 @@ -67533,7 +67698,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67554,8 +67719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -67573,7 +67738,7 @@ paths: type: integer secrets: type: array - items: &471 + items: &473 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67593,9 +67758,9 @@ paths: - created_at - updated_at examples: - default: *468 + default: *470 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67616,16 +67781,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: *470 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67645,17 +67810,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '200': description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: *472 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67675,9 +67840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 requestBody: required: true content: @@ -67705,7 +67870,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -67729,9 +67894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '204': description: Response @@ -67759,8 +67924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *344 - - *345 + - *346 + - *347 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67802,7 +67967,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &473 + properties: &475 login: type: string example: octocat @@ -67895,7 +68060,7 @@ paths: user_view_type: type: string example: public - required: &474 + required: &476 - avatar_url - events_url - followers_url @@ -67944,7 +68109,7 @@ paths: admin: false role_name: write headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -67969,9 +68134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *344 - - *345 - - *72 + - *346 + - *347 + - *74 responses: '204': description: Response if user is a collaborator @@ -68017,9 +68182,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *344 - - *345 - - *72 + - *346 + - *347 + - *74 requestBody: required: false content: @@ -68045,7 +68210,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &546 + schema: &548 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -68056,7 +68221,7 @@ paths: example: 42 type: integer format: int64 - repository: *159 + repository: *161 invitee: title: Simple User description: A GitHub user. @@ -68234,7 +68399,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *128 + schema: *130 '403': *29 x-github: triggersNotification: true @@ -68274,9 +68439,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *344 - - *345 - - *72 + - *346 + - *347 + - *74 responses: '204': description: No Content when collaborator was removed from the repository. @@ -68307,9 +68472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *344 - - *345 - - *72 + - *346 + - *347 + - *74 responses: '200': description: if user has admin permissions @@ -68329,8 +68494,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *473 - required: *474 + properties: *475 + required: *476 nullable: true required: - permission @@ -68385,8 +68550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -68396,7 +68561,7 @@ paths: application/json: schema: type: array - items: &475 + items: &477 title: Commit Comment description: Commit Comment type: object @@ -68437,8 +68602,8 @@ paths: updated_at: type: string format: date-time - author_association: *83 - reactions: *84 + author_association: *85 + reactions: *86 required: - url - html_url @@ -68454,7 +68619,7 @@ paths: - created_at - updated_at examples: - default: &480 + default: &482 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68488,7 +68653,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68513,17 +68678,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '200': description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: &481 + default: &483 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68580,9 +68745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -68604,7 +68769,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: default: value: @@ -68655,9 +68820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '204': description: Response @@ -68678,9 +68843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 - 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. @@ -68706,7 +68871,7 @@ paths: application/json: schema: type: array - items: &476 + items: &478 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -68749,7 +68914,7 @@ paths: - content - created_at examples: - default: &550 + default: &552 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68775,7 +68940,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -68794,9 +68959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -68828,9 +68993,9 @@ paths: description: Reaction exists content: application/json: - schema: *476 + schema: *478 examples: - default: &477 + default: &479 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68859,9 +69024,9 @@ paths: description: Reaction created content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '422': *15 x-github: githubCloudOnly: false @@ -68883,10 +69048,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *344 - - *345 - - *102 - - &551 + - *346 + - *347 + - *104 + - &553 name: reaction_id description: The unique identifier of the reaction. in: path @@ -68941,8 +69106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *344 - - *345 + - *346 + - *347 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68998,9 +69163,9 @@ paths: application/json: schema: type: array - items: *478 + items: *480 examples: - default: &603 + default: &605 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69070,7 +69235,7 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *68 + Link: *70 '500': *55 '400': *14 '404': *6 @@ -69094,9 +69259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *344 - - *345 - - &479 + - *346 + - *347 + - &481 name: commit_sha description: The SHA of the commit. in: path @@ -69168,9 +69333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *344 - - *345 - - *479 + - *346 + - *347 + - *481 - *17 - *19 responses: @@ -69180,11 +69345,11 @@ paths: application/json: schema: type: array - items: *475 + items: *477 examples: - default: *480 + default: *482 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69210,9 +69375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *344 - - *345 - - *479 + - *346 + - *347 + - *481 requestBody: required: true content: @@ -69247,9 +69412,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *481 + default: *483 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69277,9 +69442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *344 - - *345 - - *479 + - *346 + - *347 + - *481 - *17 - *19 responses: @@ -69289,9 +69454,9 @@ paths: application/json: schema: type: array - items: *482 + items: *484 examples: - default: &595 + default: &597 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69770,7 +69935,7 @@ paths: auto_merge: draft: false headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -69828,11 +69993,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *344 - - *345 + - *346 + - *347 - *19 - *17 - - &483 + - &485 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)" @@ -69847,9 +70012,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *480 examples: - default: &582 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69937,7 +70102,7 @@ paths: schema: type: string examples: - default: &492 + default: &494 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -69950,7 +70115,7 @@ paths: schema: type: string examples: - default: &493 + default: &495 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -69977,7 +70142,7 @@ paths: '422': *15 '404': *6 '500': *55 - '503': *120 + '503': *122 '409': *54 x-github: githubCloudOnly: false @@ -70003,11 +70168,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *344 - - *345 - - *483 - - *484 + - *346 + - *347 - *485 + - *486 + - *487 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -70041,11 +70206,11 @@ paths: type: integer check_runs: type: array - items: *422 + items: *424 examples: - default: *486 + default: *488 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70068,9 +70233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *344 - - *345 - - *483 + - *346 + - *347 + - *485 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -70078,7 +70243,7 @@ paths: schema: type: integer example: 1 - - *484 + - *486 - *17 - *19 responses: @@ -70096,7 +70261,7 @@ paths: type: integer check_suites: type: array - items: *427 + items: *429 examples: default: value: @@ -70271,7 +70436,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: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70296,9 +70461,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *344 - - *345 - - *483 + - *346 + - *347 + - *485 - *17 - *19 responses: @@ -70365,7 +70530,7 @@ paths: type: string total_count: type: integer - repository: *159 + repository: *161 commit_url: type: string format: uri @@ -70496,9 +70661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *344 - - *345 - - *483 + - *346 + - *347 + - *485 - *17 - *19 responses: @@ -70508,7 +70673,7 @@ paths: application/json: schema: type: array - items: &671 + items: &673 title: Status description: The status of a commit. type: object @@ -70588,8 +70753,8 @@ paths: type: User site_admin: false headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70617,8 +70782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -70647,20 +70812,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *487 - required: *488 + properties: *489 + required: *490 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &489 + properties: &491 url: type: string format: uri html_url: type: string format: uri - required: &490 + required: &492 - url - html_url nullable: true @@ -70668,32 +70833,32 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true contributing: title: Community Health File type: object - properties: *489 - required: *490 + properties: *491 + required: *492 nullable: true readme: title: Community Health File type: object - properties: *489 - required: *490 + properties: *491 + required: *492 nullable: true issue_template: title: Community Health File type: object - properties: *489 - required: *490 + properties: *491 + required: *492 nullable: true pull_request_template: title: Community Health File type: object - properties: *489 - required: *490 + properties: *491 + required: *492 nullable: true required: - code_of_conduct @@ -70820,8 +70985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *344 - - *345 + - *346 + - *347 - *19 - *17 - name: basehead @@ -70864,8 +71029,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *478 - merge_base_commit: *478 + base_commit: *480 + merge_base_commit: *480 status: type: string enum: @@ -70885,10 +71050,10 @@ paths: example: 6 commits: type: array - items: *478 + items: *480 files: type: array - items: *491 + items: *493 required: - url - html_url @@ -71134,15 +71299,15 @@ paths: schema: type: string examples: - default: *492 + default: *494 application/vnd.github.patch: schema: type: string examples: - default: *493 + default: *495 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71184,8 +71349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *344 - - *345 + - *346 + - *347 - name: path description: path parameter in: path @@ -71345,7 +71510,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &494 + response-if-content-is-a-file-github-object: &496 summary: Response if content is a file value: type: file @@ -71477,7 +71642,7 @@ paths: - size - type - url - - &608 + - &610 title: Content File description: Content File type: object @@ -71678,7 +71843,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *494 + response-if-content-is-a-file: *496 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71747,7 +71912,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *495 + '302': *497 '304': *37 x-github: githubCloudOnly: false @@ -71800,8 +71965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *344 - - *345 + - *346 + - *347 - name: path description: path parameter in: path @@ -71894,7 +72059,7 @@ paths: description: Response content: application/json: - schema: &496 + schema: &498 title: File Commit description: File Commit type: object @@ -72046,7 +72211,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *498 examples: example-for-creating-a-file: value: @@ -72100,7 +72265,7 @@ paths: schema: oneOf: - *3 - - &528 + - &530 description: Repository rule violation was detected type: object properties: @@ -72121,7 +72286,7 @@ paths: items: type: object properties: - placeholder_id: &663 + placeholder_id: &665 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -72153,8 +72318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *344 - - *345 + - *346 + - *347 - name: path description: path parameter in: path @@ -72215,7 +72380,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *498 examples: default: value: @@ -72250,7 +72415,7 @@ paths: '422': *15 '404': *6 '409': *54 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72270,8 +72435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *344 - - *345 + - *346 + - *347 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72371,7 +72536,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *68 + Link: *70 '204': description: Response if repository is empty '403': *29 @@ -72394,24 +72559,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *344 - - *345 - - *197 - - *198 + - *346 + - *347 - *199 - *200 - *201 + - *202 + - *203 - 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 - - *202 - - *497 - - *203 - *204 + - *499 - *205 + - *206 + - *207 - *62 - *47 - *48 @@ -72423,11 +72588,11 @@ paths: application/json: schema: type: array - items: &501 + items: &503 type: object description: A Dependabot alert. properties: - number: *177 + number: *179 state: type: string description: The state of the Dependabot alert. @@ -72470,13 +72635,13 @@ paths: - direct - transitive - inconclusive - security_advisory: *498 + security_advisory: *500 security_vulnerability: *66 - url: *180 - html_url: *181 - created_at: *178 - updated_at: *179 - dismissed_at: *183 + url: *182 + html_url: *183 + created_at: *180 + updated_at: *181 + dismissed_at: *185 dismissed_by: title: Simple User description: A GitHub user. @@ -72500,9 +72665,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *182 - auto_dismissed_at: *499 - dismissal_request: *500 + fixed_at: *184 + auto_dismissed_at: *501 + dismissal_request: *502 assignees: type: array description: The users assigned to this alert. @@ -72757,9 +72922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *344 - - *345 - - &502 + - *346 + - *347 + - &504 name: alert_number in: path description: |- @@ -72768,13 +72933,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *177 + schema: *179 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: default: value: @@ -72906,9 +73071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *344 - - *345 - - *502 + - *346 + - *347 + - *504 requestBody: required: true content: @@ -72964,7 +73129,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: default: value: @@ -73094,8 +73259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -73113,7 +73278,7 @@ paths: type: integer secrets: type: array - items: &505 + items: &507 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -73144,7 +73309,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73166,16 +73331,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: - default: *504 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73195,15 +73360,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: default: value: @@ -73229,9 +73394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 requestBody: required: true content: @@ -73259,7 +73424,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -73283,9 +73448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *344 - - *345 - - *167 + - *346 + - *347 + - *169 responses: '204': description: Response @@ -73307,8 +73472,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: - - *344 - - *345 + - *346 + - *347 - 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 @@ -73444,7 +73609,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *68 + Link: *70 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -73468,8 +73633,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -73685,7 +73850,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *68 + Link: *70 '404': *6 '403': *29 x-github: @@ -73707,8 +73872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - name: sbom_uuid in: path required: true @@ -73719,7 +73884,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *506 + Location: *508 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -73740,8 +73905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '201': description: Response @@ -73779,8 +73944,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -73855,7 +74020,7 @@ paths: - version - url additionalProperties: false - metadata: &507 + metadata: &509 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73888,7 +74053,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *507 + metadata: *509 resolved: type: object description: A collection of resolved package dependencies. @@ -73901,7 +74066,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *507 + metadata: *509 relationship: type: string description: A notation of whether a dependency is requested @@ -74030,8 +74195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *344 - - *345 + - *346 + - *347 - name: sha description: The SHA recorded at creation time. in: query @@ -74071,11 +74236,11 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 + default: *511 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74139,8 +74304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -74221,7 +74386,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: simple-example: summary: Simple example @@ -74294,9 +74459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *344 - - *345 - - &510 + - *346 + - *347 + - &512 name: deployment_id description: deployment_id parameter in: path @@ -74308,7 +74473,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -74373,9 +74538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *344 - - *345 - - *510 + - *346 + - *347 + - *512 responses: '204': description: Response @@ -74397,9 +74562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *344 - - *345 - - *510 + - *346 + - *347 + - *512 - *17 - *19 responses: @@ -74409,7 +74574,7 @@ paths: application/json: schema: type: array - items: &511 + items: &513 title: Deployment Status description: The status of a deployment. type: object @@ -74500,8 +74665,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -74550,7 +74715,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -74570,9 +74735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *344 - - *345 - - *510 + - *346 + - *347 + - *512 requestBody: required: true content: @@ -74647,9 +74812,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &512 + default: &514 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74705,9 +74870,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *344 - - *345 - - *510 + - *346 + - *347 + - *512 - name: status_id in: path required: true @@ -74718,9 +74883,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -74745,8 +74910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -74803,8 +74968,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -74821,7 +74986,7 @@ paths: type: integer environments: type: array - items: &514 + items: &516 title: Environment description: Details of a deployment environment type: object @@ -74873,7 +75038,7 @@ paths: type: type: string example: wait_timer - wait_timer: &516 + wait_timer: &518 type: integer example: 30 description: The amount of time to delay a job after @@ -74910,11 +75075,11 @@ paths: items: type: object properties: - type: *513 + type: *515 reviewer: anyOf: - *4 - - *195 + - *197 required: - id - node_id @@ -74934,7 +75099,7 @@ paths: - id - node_id - type - deployment_branch_policy: &517 + deployment_branch_policy: &519 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -75050,9 +75215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *344 - - *345 - - &515 + - *346 + - *347 + - &517 name: environment_name in: path required: true @@ -75065,9 +75230,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: &518 + default: &520 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -75151,9 +75316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 requestBody: required: false content: @@ -75162,7 +75327,7 @@ paths: type: object nullable: true properties: - wait_timer: *516 + wait_timer: *518 prevent_self_review: type: boolean example: false @@ -75179,13 +75344,13 @@ paths: items: type: object properties: - type: *513 + type: *515 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *517 + deployment_branch_policy: *519 additionalProperties: false examples: default: @@ -75205,9 +75370,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: *518 + default: *520 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -75231,9 +75396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 responses: '204': description: Default response @@ -75258,9 +75423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 - *17 - *19 responses: @@ -75278,7 +75443,7 @@ paths: example: 2 branch_policies: type: array - items: &519 + items: &521 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75335,9 +75500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 requestBody: required: true content: @@ -75383,9 +75548,9 @@ paths: description: Response content: application/json: - schema: *519 + schema: *521 examples: - example-wildcard: &520 + example-wildcard: &522 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75427,10 +75592,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *344 - - *345 - - *515 - - &521 + - *346 + - *347 + - *517 + - &523 name: branch_policy_id in: path required: true @@ -75442,9 +75607,9 @@ paths: description: Response content: application/json: - schema: *519 + schema: *521 examples: - default: *520 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75463,10 +75628,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *344 - - *345 - - *515 - - *521 + - *346 + - *347 + - *517 + - *523 requestBody: required: true content: @@ -75494,9 +75659,9 @@ paths: description: Response content: application/json: - schema: *519 + schema: *521 examples: - default: *520 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75515,10 +75680,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *344 - - *345 - - *515 - - *521 + - *346 + - *347 + - *517 + - *523 responses: '204': description: Response @@ -75543,9 +75708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *515 - - *345 - - *344 + - *517 + - *347 + - *346 responses: '200': description: List of deployment protection rules @@ -75561,7 +75726,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &522 + items: &524 title: Deployment protection rule description: Deployment protection rule type: object @@ -75580,7 +75745,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &523 + app: &525 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75679,9 +75844,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: - - *515 - - *345 - - *344 + - *517 + - *347 + - *346 requestBody: content: application/json: @@ -75702,9 +75867,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *522 + schema: *524 examples: - default: &524 + default: &526 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75739,9 +75904,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: - - *515 - - *345 - - *344 + - *517 + - *347 + - *346 - *19 - *17 responses: @@ -75760,7 +75925,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *523 + items: *525 examples: default: value: @@ -75795,10 +75960,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *344 - - *345 - - *515 - - &525 + - *346 + - *347 + - *517 + - &527 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75810,9 +75975,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *524 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75833,10 +75998,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *515 - - *345 - - *344 - - *525 + - *517 + - *347 + - *346 + - *527 responses: '204': description: Response @@ -75862,9 +76027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 - *17 - *19 responses: @@ -75882,11 +76047,11 @@ paths: type: integer secrets: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75909,17 +76074,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *392 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75941,18 +76106,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *344 - - *345 - - *515 - - *167 + - *346 + - *347 + - *517 + - *169 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *526 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75974,10 +76139,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *344 - - *345 - - *515 - - *167 + - *346 + - *347 + - *517 + - *169 requestBody: required: true content: @@ -76008,7 +76173,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -76034,10 +76199,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *344 - - *345 - - *515 - - *167 + - *346 + - *347 + - *517 + - *169 responses: '204': description: Default response @@ -76062,10 +76227,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *344 - - *345 - - *515 - - *360 + - *346 + - *347 + - *517 + - *362 - *19 responses: '200': @@ -76082,11 +76247,11 @@ paths: type: integer variables: type: array - items: *393 + items: *395 examples: - default: *394 + default: *396 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76107,9 +76272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *344 - - *345 - - *515 + - *346 + - *347 + - *517 requestBody: required: true content: @@ -76136,7 +76301,7 @@ paths: description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -76161,18 +76326,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *344 - - *345 - - *515 - - *170 + - *346 + - *347 + - *517 + - *172 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *527 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76193,10 +76358,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *344 - - *345 - - *170 - - *515 + - *346 + - *347 + - *172 + - *517 requestBody: required: true content: @@ -76238,10 +76403,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *344 - - *345 - - *170 - - *515 + - *346 + - *347 + - *172 + - *517 responses: '204': description: Response @@ -76263,8 +76428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -76274,7 +76439,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: 200-response: value: @@ -76332,8 +76497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *344 - - *345 + - *346 + - *347 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76355,7 +76520,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -76468,7 +76633,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *68 + Link: *70 '400': *14 x-github: githubCloudOnly: false @@ -76492,8 +76657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -76525,9 +76690,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *349 + default: *351 '400': *14 '422': *15 '403': *29 @@ -76548,8 +76713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -76608,8 +76773,8 @@ paths: application/json: schema: oneOf: - - *128 - - *528 + - *130 + - *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76634,8 +76799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *344 - - *345 + - *346 + - *347 - name: file_sha in: path required: true @@ -76734,8 +76899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -76844,7 +77009,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &531 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -77058,15 +77223,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *344 - - *345 - - *479 + - *346 + - *347 + - *481 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: default: value: @@ -77122,9 +77287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *344 - - *345 - - &530 + - *346 + - *347 + - &532 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. @@ -77141,7 +77306,7 @@ paths: application/json: schema: type: array - items: &531 + items: &533 title: Git Reference description: Git references within a repository type: object @@ -77194,7 +77359,7 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *68 + Link: *70 '409': *54 x-github: githubCloudOnly: false @@ -77216,17 +77381,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *344 - - *345 - - *530 + - *346 + - *347 + - *532 responses: '200': description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: &532 + default: &534 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77255,8 +77420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -77285,9 +77450,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *532 + default: *534 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77313,9 +77478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *344 - - *345 - - *530 + - *346 + - *347 + - *532 requestBody: required: true content: @@ -77344,9 +77509,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *532 + default: *534 '422': *15 '409': *54 x-github: @@ -77364,9 +77529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *344 - - *345 - - *530 + - *346 + - *347 + - *532 responses: '204': description: Response @@ -77421,8 +77586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -77489,7 +77654,7 @@ paths: description: Response content: application/json: - schema: &534 + schema: &536 title: Git Tag description: Metadata for a Git tag type: object @@ -77540,7 +77705,7 @@ paths: - sha - type - url - verification: *533 + verification: *535 required: - sha - url @@ -77550,7 +77715,7 @@ paths: - tag - message examples: - default: &535 + default: &537 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77623,8 +77788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *344 - - *345 + - *346 + - *347 - name: tag_sha in: path required: true @@ -77635,9 +77800,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: *535 + default: *537 '404': *6 '409': *54 x-github: @@ -77661,8 +77826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -77735,7 +77900,7 @@ paths: description: Response content: application/json: - schema: &536 + schema: &538 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77831,8 +77996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *344 - - *345 + - *346 + - *347 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77855,7 +78020,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *538 examples: default-response: summary: Default response @@ -77914,8 +78079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -77925,7 +78090,7 @@ paths: application/json: schema: type: array - items: &537 + items: &539 title: Webhook description: Webhooks for repositories. type: object @@ -77979,7 +78144,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &785 + last_response: &787 title: Hook Response type: object properties: @@ -78034,7 +78199,7 @@ paths: status: unused message: headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -78053,8 +78218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -78106,9 +78271,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: - default: &538 + default: &540 value: type: Repository id: 12345678 @@ -78156,17 +78321,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 responses: '200': description: Response content: application/json: - schema: *537 + schema: *539 examples: - default: *538 + default: *540 '404': *6 x-github: githubCloudOnly: false @@ -78186,9 +78351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 requestBody: required: true content: @@ -78233,9 +78398,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: - default: *538 + default: *540 '422': *15 '404': *6 x-github: @@ -78256,9 +78421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 responses: '204': description: Response @@ -78282,9 +78447,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 responses: '200': description: Response @@ -78311,9 +78476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 requestBody: required: false content: @@ -78357,12 +78522,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *344 - - *345 - - *216 - - *17 - - *217 + - *346 + - *347 - *218 + - *17 + - *219 + - *220 responses: '200': description: Response @@ -78370,9 +78535,9 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: - default: *220 + default: *222 '400': *14 '422': *15 x-github: @@ -78391,18 +78556,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 - *16 responses: '200': description: Response content: application/json: - schema: *221 + schema: *223 examples: - default: *222 + default: *224 '400': *14 '422': *15 x-github: @@ -78421,9 +78586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 - *16 responses: '202': *39 @@ -78446,9 +78611,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 responses: '204': description: Response @@ -78473,9 +78638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *344 - - *345 - - *216 + - *346 + - *347 + - *218 responses: '204': description: Response @@ -78498,8 +78663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response if immutable releases are enabled @@ -78545,8 +78710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': *61 '409': *54 @@ -78566,8 +78731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': *61 '409': *54 @@ -78624,14 +78789,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &539 + schema: &541 title: Import description: A repository import from an external source. type: object @@ -78730,7 +78895,7 @@ paths: - html_url - authors_url examples: - default: &542 + default: &544 value: vcs: subversion use_lfs: true @@ -78746,7 +78911,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': &540 + '503': &542 description: Unavailable due to service under maintenance. content: application/json: @@ -78775,8 +78940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -78824,7 +78989,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: default: value: @@ -78849,7 +79014,7 @@ paths: type: string '422': *15 '404': *6 - '503': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78877,8 +79042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -78927,7 +79092,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: example-1: summary: Example 1 @@ -78975,7 +79140,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': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78998,12 +79163,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response - '503': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79029,9 +79194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *344 - - *345 - - &713 + - *346 + - *347 + - &715 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -79045,7 +79210,7 @@ paths: application/json: schema: type: array - items: &541 + items: &543 title: Porter Author description: Porter Author type: object @@ -79099,7 +79264,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': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79124,8 +79289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *344 - - *345 + - *346 + - *347 - name: author_id in: path required: true @@ -79155,7 +79320,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *543 examples: default: value: @@ -79168,7 +79333,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79192,8 +79357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -79234,7 +79399,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79262,8 +79427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -79290,11 +79455,11 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *542 + default: *544 '422': *15 - '503': *540 + '503': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79317,8 +79482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -79326,8 +79491,8 @@ paths: application/json: schema: *22 examples: - default: *543 - '301': *348 + default: *545 + '301': *350 '404': *6 x-github: githubCloudOnly: false @@ -79347,8 +79512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -79356,12 +79521,12 @@ paths: application/json: schema: anyOf: - - *235 + - *237 - type: object properties: {} additionalProperties: false examples: - default: &545 + default: &547 value: limit: collaborators_only origin: repository @@ -79386,13 +79551,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: application/json: - schema: *544 + schema: *546 examples: default: summary: Example request body @@ -79404,9 +79569,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *545 + default: *547 '409': description: Response x-github: @@ -79428,8 +79593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -79452,8 +79617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -79463,9 +79628,9 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: &706 + default: &708 value: - id: 1 repository: @@ -79579,7 +79744,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79596,9 +79761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *344 - - *345 - - *239 + - *346 + - *347 + - *241 requestBody: required: false content: @@ -79627,7 +79792,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: default: value: @@ -79758,9 +79923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *344 - - *345 - - *239 + - *346 + - *347 + - *241 responses: '204': description: Response @@ -79791,8 +79956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *344 - - *345 + - *346 + - *347 - 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 @@ -79840,7 +80005,7 @@ paths: required: false schema: type: string - - *246 + - *248 - name: sort description: What to sort results by. in: query @@ -79853,7 +80018,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -79863,9 +80028,9 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: &559 + default: &561 value: - id: 1 node_id: MDU6SXNzdWUx @@ -80013,8 +80178,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 '422': *15 '404': *6 x-github: @@ -80043,8 +80208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -80126,9 +80291,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: &556 + default: &558 value: id: 1 node_id: MDU6SXNzdWUx @@ -80289,9 +80454,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *120 + '503': *122 '404': *6 - '410': *547 + '410': *549 x-github: triggersNotification: true githubCloudOnly: false @@ -80329,9 +80494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *344 - - *345 - - *110 + - *346 + - *347 + - *112 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -80341,7 +80506,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -80351,9 +80516,9 @@ paths: application/json: schema: type: array - items: *548 + items: *550 examples: - default: &558 + default: &560 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80384,7 +80549,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 '422': *15 '404': *6 x-github: @@ -80411,17 +80576,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '200': description: Response content: application/json: - schema: *548 + schema: *550 examples: - default: &549 + default: &551 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80476,9 +80641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -80500,9 +80665,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *550 examples: - default: *549 + default: *551 '422': *15 x-github: githubCloudOnly: false @@ -80520,9 +80685,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '204': description: Response @@ -80550,15 +80715,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '200': description: Response content: application/json: - schema: *548 + schema: *550 examples: default: value: @@ -80614,7 +80779,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *547 + '410': *549 '422': *15 x-github: githubCloudOnly: false @@ -80631,17 +80796,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *547 - '503': *120 + '410': *549 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80658,9 +80823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 - 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. @@ -80686,11 +80851,11 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *550 + default: *552 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -80709,9 +80874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -80743,16 +80908,16 @@ paths: description: Reaction exists content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '201': description: Reaction created content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '422': *15 x-github: githubCloudOnly: false @@ -80774,10 +80939,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *344 - - *345 - - *102 - - *551 + - *346 + - *347 + - *104 + - *553 responses: '204': description: Response @@ -80797,8 +80962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -80808,7 +80973,7 @@ paths: application/json: schema: type: array - items: &555 + items: &557 title: Issue Event description: Issue Event type: object @@ -80851,9 +81016,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *552 - required: *553 - x-github-breaking-changes: *554 + properties: *554 + required: *555 + x-github-breaking-changes: *556 nullable: true label: title: Issue Event Label @@ -80897,7 +81062,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *195 + requested_team: *197 dismissed_review: title: Issue Event Dismissed Review type: object @@ -80962,7 +81127,7 @@ paths: required: - from - to - author_association: *83 + author_association: *85 lock_reason: type: string nullable: true @@ -80975,8 +81140,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 required: - id - node_id @@ -81143,7 +81308,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -81161,8 +81326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *344 - - *345 + - *346 + - *347 - name: event_id in: path required: true @@ -81173,7 +81338,7 @@ paths: description: Response content: application/json: - schema: *555 + schema: *557 examples: default: value: @@ -81366,7 +81531,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *547 + '410': *549 '403': *29 x-github: githubCloudOnly: false @@ -81400,9 +81565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *344 - - *345 - - &557 + - *346 + - *347 + - &559 name: issue_number description: The number that identifies the issue. in: path @@ -81414,11 +81579,11 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: default: summary: Issue - value: *556 + value: *558 pinned_comment: summary: Issue with pinned comment value: @@ -81623,9 +81788,9 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *348 + '301': *350 '404': *6 - '410': *547 + '410': *549 '304': *37 x-github: githubCloudOnly: false @@ -81650,9 +81815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: false content: @@ -81776,15 +81941,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 '422': *15 - '503': *120 + '503': *122 '403': *29 - '301': *348 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81812,9 +81977,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: false content: @@ -81840,9 +82005,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81858,9 +82023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: content: application/json: @@ -81885,9 +82050,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81909,9 +82074,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: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - name: assignee in: path required: true @@ -81951,10 +82116,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *344 - - *345 - - *557 - - *93 + - *346 + - *347 + - *559 + - *95 - *17 - *19 responses: @@ -81964,13 +82129,13 @@ paths: application/json: schema: type: array - items: *548 + items: *550 examples: - default: *558 + default: *560 headers: - Link: *68 + Link: *70 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81999,9 +82164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -82023,16 +82188,16 @@ paths: description: Response content: application/json: - schema: *548 + schema: *550 examples: - default: *549 + default: *551 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *547 + '410': *549 '422': *15 '404': *6 x-github: @@ -82060,9 +82225,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -82072,14 +82237,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *559 + default: *561 headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82107,9 +82272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -82131,17 +82296,17 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *348 + '301': *350 '403': *29 - '410': *547 + '410': *549 '422': *15 '404': *6 x-github: @@ -82172,9 +82337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -82186,15 +82351,15 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 - '301': *348 + default: *558 + '301': *350 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *547 + '410': *549 x-github: triggersNotification: true githubCloudOnly: false @@ -82220,9 +82385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -82232,14 +82397,14 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *559 + default: *561 headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82256,9 +82421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -82272,7 +82437,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &563 + - &565 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -82303,8 +82468,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -82326,7 +82491,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &566 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -82357,8 +82522,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 label: type: object properties: @@ -82446,8 +82611,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 assigner: *4 required: @@ -82462,7 +82627,7 @@ paths: - performed_via_github_app - assignee - assigner - - &565 + - &567 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -82493,8 +82658,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -82513,7 +82678,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &568 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -82544,8 +82709,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 milestone: type: object properties: @@ -82564,7 +82729,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &569 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -82595,8 +82760,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 rename: type: object properties: @@ -82618,7 +82783,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &570 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -82649,10 +82814,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -82665,7 +82830,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &571 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -82696,10 +82861,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 review_requester: *4 - requested_team: *195 + requested_team: *197 requested_reviewer: *4 required: - review_requester @@ -82712,7 +82877,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &572 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -82743,8 +82908,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 dismissed_review: type: object properties: @@ -82772,7 +82937,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &573 title: Locked Issue Event description: Locked Issue Event type: object @@ -82803,8 +82968,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 lock_reason: type: string example: '"off-topic"' @@ -82820,7 +82985,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &574 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -82851,8 +83016,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -82886,7 +83051,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &575 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82917,8 +83082,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -82952,7 +83117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &576 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82983,8 +83148,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 project_card: type: object properties: @@ -83018,7 +83183,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &577 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83108,8 +83273,8 @@ paths: name: label color: red headers: - Link: *68 - '410': *547 + Link: *70 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83126,9 +83291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -83138,9 +83303,9 @@ paths: application/json: schema: type: array - items: *560 + items: *562 examples: - default: &561 + default: &563 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -83163,10 +83328,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83195,9 +83360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -83261,14 +83426,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *560 + items: *562 examples: - default: *561 + default: *563 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -83299,9 +83464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -83366,14 +83531,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *560 + items: *562 examples: - default: *561 + default: *563 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -83399,17 +83564,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *344 - - *345 - - *557 - - *242 + - *346 + - *347 + - *559 + - *244 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -83427,9 +83592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -83439,9 +83604,9 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: &562 + default: &564 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83458,10 +83623,10 @@ paths: color: a2eeef default: false headers: - Link: *68 - '301': *348 + Link: *70 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83477,9 +83642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: false content: @@ -83522,12 +83687,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *562 - '301': *348 + default: *564 + '301': *350 '404': *6 - '410': *547 + '410': *549 '422': *15 x-github: githubCloudOnly: false @@ -83544,9 +83709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: false content: @@ -83606,12 +83771,12 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *562 - '301': *348 + default: *564 + '301': *350 '404': *6 - '410': *547 + '410': *549 '422': *15 x-github: githubCloudOnly: false @@ -83628,15 +83793,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 responses: '204': description: Response - '301': *348 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83655,9 +83820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - name: name in: path required: true @@ -83670,7 +83835,7 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: default: value: @@ -83681,9 +83846,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *348 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83703,9 +83868,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: false content: @@ -83733,7 +83898,7 @@ paths: '204': description: Response '403': *29 - '410': *547 + '410': *549 '404': *6 '422': *15 x-github: @@ -83751,9 +83916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 responses: '204': description: Response @@ -83783,20 +83948,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 - '301': *348 + default: *558 + '301': *350 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83813,9 +83978,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - 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. @@ -83841,13 +84006,13 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *550 + default: *552 headers: - Link: *68 + Link: *70 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83865,9 +84030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -83899,16 +84064,16 @@ paths: description: Response content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '201': description: Response content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '422': *15 x-github: githubCloudOnly: false @@ -83930,10 +84095,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *344 - - *345 - - *557 - - *551 + - *346 + - *347 + - *559 + - *553 responses: '204': description: Response @@ -83962,9 +84127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -83986,9 +84151,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84021,9 +84186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -84033,13 +84198,13 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *559 + default: *561 headers: - Link: *68 + Link: *70 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84067,9 +84232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -84096,16 +84261,16 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *547 + '410': *549 '422': *15 '404': *6 x-github: @@ -84125,9 +84290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 requestBody: required: true content: @@ -84158,13 +84323,13 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *556 + default: *558 '403': *29 '404': *6 '422': *7 - '503': *120 + '503': *122 x-github: triggersNotification: true githubCloudOnly: false @@ -84182,9 +84347,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *344 - - *345 - - *557 + - *346 + - *347 + - *559 - *17 - *19 responses: @@ -84199,8 +84364,6 @@ paths: description: Timeline Event type: object anyOf: - - *563 - - *564 - *565 - *566 - *567 @@ -84212,6 +84375,8 @@ paths: - *573 - *574 - *575 + - *576 + - *577 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84254,7 +84419,7 @@ paths: issue_url: type: string format: uri - author_association: *83 + author_association: *85 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -84264,16 +84429,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 - reactions: *84 + properties: *83 + required: *84 + reactions: *86 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *576 - required: *577 + properties: *578 + required: *579 nullable: true required: - event @@ -84305,7 +84470,7 @@ paths: properties: type: type: string - issue: *86 + issue: *88 required: - event - created_at @@ -84505,7 +84670,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - event - id @@ -84528,7 +84693,7 @@ paths: type: string comments: type: array - items: &597 + items: &599 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -84623,7 +84788,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: @@ -84707,7 +84872,7 @@ paths: enum: - line - file - reactions: *84 + reactions: *86 body_html: type: string example: '"

comment body

"' @@ -84743,7 +84908,7 @@ paths: type: string comments: type: array - items: *475 + items: *477 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -84774,8 +84939,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -84818,8 +84983,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 assignee: *4 required: - id @@ -84862,8 +85027,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 state_reason: type: string nullable: true @@ -85030,9 +85195,9 @@ paths: type: User site_admin: true headers: - Link: *68 + Link: *70 '404': *6 - '410': *547 + '410': *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85049,8 +85214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -85060,7 +85225,7 @@ paths: application/json: schema: type: array - items: &578 + items: &580 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85110,7 +85275,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85126,8 +85291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -85163,9 +85328,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: &579 + default: &581 value: id: 1 key: ssh-rsa AAA... @@ -85199,9 +85364,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *344 - - *345 - - &580 + - *346 + - *347 + - &582 name: key_id description: The unique identifier of the key. in: path @@ -85213,9 +85378,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: *579 + default: *581 '404': *6 x-github: githubCloudOnly: false @@ -85233,9 +85398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *344 - - *345 - - *580 + - *346 + - *347 + - *582 responses: '204': description: Response @@ -85255,8 +85420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -85266,11 +85431,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *562 + default: *564 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -85289,8 +85454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -85326,9 +85491,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: &581 + default: &583 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85360,8 +85525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *344 - - *345 + - *346 + - *347 - name: name in: path required: true @@ -85372,9 +85537,9 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: - default: *581 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -85391,8 +85556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *344 - - *345 + - *346 + - *347 - name: name in: path required: true @@ -85431,7 +85596,7 @@ paths: description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -85457,8 +85622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *344 - - *345 + - *346 + - *347 - name: name in: path required: true @@ -85484,8 +85649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -85524,9 +85689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *344 - - *345 - - *448 + - *346 + - *347 + - *450 responses: '200': description: Response @@ -85588,8 +85753,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true required: - _links @@ -85671,8 +85836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -85737,8 +85902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -85772,9 +85937,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *478 + schema: *480 examples: - default: *582 + default: *584 '204': description: Response when already merged '404': @@ -85799,8 +85964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *344 - - *345 + - *346 + - *347 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -85841,12 +86006,12 @@ paths: application/json: schema: type: array - items: &583 + items: &585 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *280 - required: *281 + properties: *282 + required: *283 examples: default: value: @@ -85885,7 +86050,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -85902,8 +86067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -85943,9 +86108,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: &584 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86004,9 +86169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *344 - - *345 - - &585 + - *346 + - *347 + - &587 name: milestone_number description: The number that identifies the milestone. in: path @@ -86018,9 +86183,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: *584 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -86037,9 +86202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *344 - - *345 - - *585 + - *346 + - *347 + - *587 requestBody: required: false content: @@ -86077,9 +86242,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: *584 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86095,9 +86260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *344 - - *345 - - *585 + - *346 + - *347 + - *587 responses: '204': description: Response @@ -86118,9 +86283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *344 - - *345 - - *585 + - *346 + - *347 + - *587 - *17 - *19 responses: @@ -86130,11 +86295,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *562 + default: *564 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86151,12 +86316,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *344 - - *345 - - *586 - - *587 - - *93 + - *346 + - *347 - *588 + - *589 + - *95 + - *590 - *17 - *19 responses: @@ -86166,11 +86331,11 @@ paths: application/json: schema: type: array - items: *113 + items: *115 examples: - default: *589 + default: *591 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86192,8 +86357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -86251,14 +86416,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: &590 + schema: &592 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86383,7 +86548,7 @@ paths: - custom_404 - public examples: - default: &591 + default: &593 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -86424,8 +86589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -86479,9 +86644,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: - default: *591 + default: *593 '422': *15 '409': *54 x-github: @@ -86504,8 +86669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -86604,8 +86769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -86631,8 +86796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -86642,7 +86807,7 @@ paths: application/json: schema: type: array - items: &592 + items: &594 title: Page Build description: Page Build type: object @@ -86717,7 +86882,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86736,8 +86901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *344 - - *345 + - *346 + - *347 responses: '201': description: Response @@ -86782,16 +86947,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *592 + schema: *594 examples: - default: &593 + default: &595 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -86839,8 +87004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *344 - - *345 + - *346 + - *347 - name: build_id in: path required: true @@ -86851,9 +87016,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: - default: *593 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86873,8 +87038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -86979,9 +87144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *344 - - *345 - - &594 + - *346 + - *347 + - &596 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87039,9 +87204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *344 - - *345 - - *594 + - *346 + - *347 + - *596 responses: '204': *61 '404': *6 @@ -87068,8 +87233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -87300,7 +87465,7 @@ paths: description: Empty response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -87327,8 +87492,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: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Private vulnerability reporting status @@ -87365,8 +87530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': *61 '422': *14 @@ -87387,8 +87552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': *61 '422': *14 @@ -87410,8 +87575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -87419,7 +87584,7 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: default: value: @@ -87450,8 +87615,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: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -87463,7 +87628,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *295 + items: *297 required: - properties examples: @@ -87513,8 +87678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *344 - - *345 + - *346 + - *347 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -87574,11 +87739,11 @@ paths: application/json: schema: type: array - items: *482 + items: *484 examples: - default: *595 + default: *597 headers: - Link: *68 + Link: *70 '304': *37 '422': *15 x-github: @@ -87608,8 +87773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -87674,7 +87839,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &601 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -87785,8 +87950,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *280 - required: *281 + properties: *282 + required: *283 nullable: true active_lock_reason: type: string @@ -87829,7 +87994,7 @@ paths: items: *4 requested_teams: type: array - items: *333 + items: *335 head: type: object properties: @@ -87837,7 +88002,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -87854,7 +88019,7 @@ paths: type: string ref: type: string - repo: *80 + repo: *82 sha: type: string user: *4 @@ -87867,14 +88032,14 @@ paths: _links: type: object properties: - comments: *282 - commits: *282 - statuses: *282 - html: *282 - issue: *282 - review_comments: *282 - review_comment: *282 - self: *282 + comments: *284 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -87884,8 +88049,8 @@ paths: - review_comments - review_comment - self - author_association: *83 - auto_merge: *596 + author_association: *85 + auto_merge: *598 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -88071,7 +88236,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &600 + default: &602 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88609,8 +88774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *344 - - *345 + - *346 + - *347 - name: sort in: query required: false @@ -88629,7 +88794,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -88639,9 +88804,9 @@ paths: application/json: schema: type: array - items: *597 + items: *599 examples: - default: &602 + default: &604 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88693,7 +88858,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88718,17 +88883,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '200': description: Response content: application/json: - schema: *597 + schema: *599 examples: - default: &598 + default: &600 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88803,9 +88968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -88827,9 +88992,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *599 examples: - default: *598 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88845,9 +89010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 responses: '204': description: Response @@ -88868,9 +89033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 - 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. @@ -88896,11 +89061,11 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *550 + default: *552 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -88919,9 +89084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *344 - - *345 - - *102 + - *346 + - *347 + - *104 requestBody: required: true content: @@ -88953,16 +89118,16 @@ paths: description: Reaction exists content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '201': description: Reaction created content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '422': *15 x-github: githubCloudOnly: false @@ -88984,10 +89149,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *344 - - *345 - - *102 - - *551 + - *346 + - *347 + - *104 + - *553 responses: '204': description: Response @@ -89030,9 +89195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *344 - - *345 - - &601 + - *346 + - *347 + - &603 name: pull_number description: The number that identifies the pull request. in: path @@ -89045,9 +89210,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *599 + schema: *601 examples: - default: *600 + default: *602 '304': *37 '404': *6 '406': @@ -89056,7 +89221,7 @@ paths: application/json: schema: *3 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89082,9 +89247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: false content: @@ -89126,9 +89291,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *601 examples: - default: *600 + default: *602 '422': *15 '403': *29 x-github: @@ -89150,9 +89315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#archive-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 responses: '204': description: Response @@ -89177,9 +89342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#unarchive-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 responses: '204': description: Response @@ -89205,9 +89370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: true content: @@ -89267,21 +89432,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89307,10 +89472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *344 - - *345 - - *601 - - *110 + - *346 + - *347 + - *603 + - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -89320,7 +89485,7 @@ paths: enum: - asc - desc - - *93 + - *95 - *17 - *19 responses: @@ -89330,11 +89495,11 @@ paths: application/json: schema: type: array - items: *597 + items: *599 examples: - default: *602 + default: *604 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89365,9 +89530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: true content: @@ -89472,7 +89637,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *599 examples: example-for-a-multi-line-comment: value: @@ -89560,10 +89725,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *344 - - *345 - - *601 - - *102 + - *346 + - *347 + - *603 + - *104 requestBody: required: true content: @@ -89585,7 +89750,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *599 examples: default: value: @@ -89671,9 +89836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 - *17 - *19 responses: @@ -89683,11 +89848,11 @@ paths: application/json: schema: type: array - items: *478 + items: *480 examples: - default: *603 + default: *605 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89715,9 +89880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 - *17 - *19 responses: @@ -89727,7 +89892,7 @@ paths: application/json: schema: type: array - items: *491 + items: *493 examples: default: value: @@ -89743,10 +89908,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *68 + Link: *70 '422': *15 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89765,9 +89930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 responses: '204': description: Response if pull request has been merged @@ -89790,9 +89955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: false content: @@ -89903,9 +90068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 responses: '200': description: Response @@ -89921,7 +90086,7 @@ paths: items: *4 teams: type: array - items: *195 + items: *197 required: - users - teams @@ -89962,7 +90127,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89980,9 +90145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: false content: @@ -90019,7 +90184,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -90555,9 +90720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: true content: @@ -90591,7 +90756,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -91107,9 +91272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 - *17 - *19 responses: @@ -91119,7 +91284,7 @@ paths: application/json: schema: type: array - items: &604 + items: &606 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91188,7 +91353,7 @@ paths: type: string body_text: type: string - author_association: *83 + author_association: *85 required: - id - node_id @@ -91237,7 +91402,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91270,9 +91435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: false content: @@ -91358,9 +91523,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: &606 + default: &608 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91423,10 +91588,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 - - &605 + - *346 + - *347 + - *603 + - &607 name: review_id description: The unique identifier of the review. in: path @@ -91438,9 +91603,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: &607 + default: &609 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91499,10 +91664,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 - - *605 + - *346 + - *347 + - *603 + - *607 requestBody: required: true content: @@ -91525,7 +91690,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: default: value: @@ -91587,18 +91752,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 - - *605 + - *346 + - *347 + - *603 + - *607 responses: '200': description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: *606 + default: *608 '422': *7 '404': *6 x-github: @@ -91625,10 +91790,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *344 - - *345 - - *601 - - *605 + - *346 + - *347 + - *603 + - *607 - *17 - *19 responses: @@ -91707,13 +91872,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *83 + author_association: *85 _links: type: object properties: - self: *282 - html: *282 - pull_request: *282 + self: *284 + html: *284 + pull_request: *284 required: - self - html @@ -91722,7 +91887,7 @@ paths: type: string body_html: type: string - reactions: *84 + reactions: *86 side: description: The side of the first line of the range for a multi-line comment. @@ -91834,7 +91999,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -91863,10 +92028,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 - - *605 + - *346 + - *347 + - *603 + - *607 requestBody: required: true content: @@ -91894,7 +92059,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: default: value: @@ -91957,10 +92122,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *344 - - *345 - - *601 - - *605 + - *346 + - *347 + - *603 + - *607 requestBody: required: true content: @@ -91995,9 +92160,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *606 examples: - default: *607 + default: *609 '404': *6 '422': *7 '403': *29 @@ -92019,9 +92184,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *344 - - *345 - - *601 + - *346 + - *347 + - *603 requestBody: required: false content: @@ -92084,8 +92249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *344 - - *345 + - *346 + - *347 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92098,9 +92263,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: &609 + default: &611 value: type: file encoding: base64 @@ -92142,8 +92307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *344 - - *345 + - *346 + - *347 - name: dir description: The alternate path to look for a README file in: path @@ -92163,9 +92328,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *609 + default: *611 '404': *6 '422': *15 x-github: @@ -92187,8 +92352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -92198,7 +92363,7 @@ paths: application/json: schema: type: array - items: *610 + items: *612 examples: default: value: @@ -92272,7 +92437,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -92292,8 +92457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -92369,9 +92534,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: &614 + default: &616 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -92476,9 +92641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *344 - - *345 - - &612 + - *346 + - *347 + - &614 name: asset_id description: The unique identifier of the asset. in: path @@ -92490,9 +92655,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: &613 + default: &615 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 @@ -92527,7 +92692,7 @@ paths: type: User site_admin: false '404': *6 - '302': *495 + '302': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92543,9 +92708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *344 - - *345 - - *612 + - *346 + - *347 + - *614 requestBody: required: false content: @@ -92573,9 +92738,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *613 examples: - default: *613 + default: *615 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92591,9 +92756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *344 - - *345 - - *612 + - *346 + - *347 + - *614 responses: '204': description: Response @@ -92618,8 +92783,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -92704,16 +92869,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *614 + default: *616 '404': *6 x-github: githubCloudOnly: false @@ -92731,8 +92896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *344 - - *345 + - *346 + - *347 - name: tag description: tag parameter in: path @@ -92745,9 +92910,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *614 + default: *616 '404': *6 x-github: githubCloudOnly: false @@ -92769,9 +92934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *344 - - *345 - - &615 + - *346 + - *347 + - &617 name: release_id description: The unique identifier of the release. in: path @@ -92785,9 +92950,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: *610 + schema: *612 examples: - default: *614 + default: *616 '401': description: Unauthorized x-github: @@ -92805,9 +92970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 requestBody: required: false content: @@ -92871,9 +93036,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *614 + default: *616 '404': description: Not Found if the discussion category name is invalid content: @@ -92894,9 +93059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 responses: '204': description: Response @@ -92917,9 +93082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 - *17 - *19 responses: @@ -92929,7 +93094,7 @@ paths: application/json: schema: type: array - items: *611 + items: *613 examples: default: value: @@ -92966,7 +93131,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93010,9 +93175,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: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 - name: name in: query required: true @@ -93038,7 +93203,7 @@ paths: description: Response for successful upload content: application/json: - schema: *611 + schema: *613 examples: response-for-successful-upload: value: @@ -93093,9 +93258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 - 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. @@ -93119,11 +93284,11 @@ paths: application/json: schema: type: array - items: *476 + items: *478 examples: - default: *550 + default: *552 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -93142,9 +93307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *344 - - *345 - - *615 + - *346 + - *347 + - *617 requestBody: required: true content: @@ -93174,16 +93339,16 @@ paths: description: Reaction exists content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '201': description: Reaction created content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 '422': *15 x-github: githubCloudOnly: false @@ -93205,10 +93370,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *344 - - *345 - - *615 - - *551 + - *346 + - *347 + - *617 + - *553 responses: '204': description: Response @@ -93232,9 +93397,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *344 - - *345 - - *411 + - *346 + - *347 + - *413 - *17 - *19 responses: @@ -93250,8 +93415,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *305 - - &616 + - *307 + - &618 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93270,69 +93435,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *306 - - *616 - - allOf: - - *307 - - *616 - allOf: - *308 - - *616 - - allOf: - - *617 - - *616 + - *618 - allOf: - *309 - - *616 + - *618 - allOf: - *310 - - *616 + - *618 + - allOf: + - *619 + - *618 - allOf: - *311 - - *616 + - *618 - allOf: - *312 - - *616 + - *618 - allOf: - *313 - - *616 + - *618 - allOf: - *314 - - *616 + - *618 - allOf: - *315 - - *616 + - *618 - allOf: - *316 - - *616 + - *618 - allOf: - *317 - - *616 + - *618 - allOf: - *318 - - *616 + - *618 - allOf: - *319 - - *616 + - *618 - allOf: - *320 - - *616 + - *618 - allOf: - *321 - - *616 + - *618 - allOf: - *322 - - *616 + - *618 - allOf: - *323 - - *616 + - *618 - allOf: - *324 - - *616 + - *618 - allOf: - *325 - - *616 + - *618 + - allOf: + - *326 + - *618 + - allOf: + - *327 + - *618 examples: default: value: @@ -93371,8 +93536,8 @@ paths: category: repos subcategory: rules parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 - name: includes_parents @@ -93383,7 +93548,7 @@ paths: schema: type: boolean default: true - - *618 + - *620 responses: '200': description: Response @@ -93391,7 +93556,7 @@ paths: application/json: schema: type: array - items: *326 + items: *328 examples: default: value: @@ -93438,8 +93603,8 @@ paths: category: repos subcategory: rules parameters: - - *344 - - *345 + - *346 + - *347 requestBody: description: Request body required: true @@ -93459,16 +93624,16 @@ paths: - tag - push default: branch - enforcement: *302 + enforcement: *304 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *303 - conditions: *300 + items: *305 + conditions: *302 rules: type: array description: An array of rules within the ruleset. - items: *619 + items: *621 required: - name - enforcement @@ -93499,9 +93664,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: &629 + default: &631 value: id: 42 name: super cool ruleset @@ -93549,12 +93714,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *344 - - *345 - - *620 - - *621 + - *346 + - *347 - *622 - *623 + - *624 + - *625 - *17 - *19 responses: @@ -93562,9 +93727,9 @@ paths: description: Response content: application/json: - schema: *624 + schema: *626 examples: - default: *625 + default: *627 '404': *6 '500': *55 x-github: @@ -93585,17 +93750,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *344 - - *345 - - *626 + - *346 + - *347 + - *628 responses: '200': description: Response content: application/json: - schema: *627 + schema: *629 examples: - default: *628 + default: *630 '404': *6 '500': *55 x-github: @@ -93623,8 +93788,8 @@ paths: category: repos subcategory: rules parameters: - - *344 - - *345 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93644,9 +93809,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: *629 + default: *631 '404': *6 '500': *55 put: @@ -93664,8 +93829,8 @@ paths: category: repos subcategory: rules parameters: - - *344 - - *345 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93690,16 +93855,16 @@ paths: - branch - tag - push - enforcement: *302 + enforcement: *304 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *303 - conditions: *300 + items: *305 + conditions: *302 rules: description: An array of rules within the ruleset. type: array - items: *619 + items: *621 examples: default: value: @@ -93727,9 +93892,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: *629 + default: *631 '404': *6 '422': *15 '500': *55 @@ -93748,8 +93913,8 @@ paths: category: repos subcategory: rules parameters: - - *344 - - *345 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93772,8 +93937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 - name: ruleset_id @@ -93789,9 +93954,9 @@ paths: application/json: schema: type: array - items: *329 + items: *331 examples: - default: *630 + default: *632 '404': *6 '500': *55 x-github: @@ -93810,8 +93975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *344 - - *345 + - *346 + - *347 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93829,7 +93994,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *633 examples: default: value: @@ -93884,25 +94049,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *344 - - *345 - - *632 - - *633 + - *346 + - *347 - *634 - *635 - *636 - *637 - *638 - *639 + - *640 + - *641 - *62 - *19 - *17 - - *640 - - *641 - *642 - *643 - *644 - *645 + - *646 + - *647 responses: '200': description: Response @@ -93910,11 +94075,11 @@ paths: application/json: schema: type: array - items: &649 + items: &651 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -93922,15 +94087,15 @@ paths: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *646 - resolution: *647 + state: *648 + resolution: *649 resolved_at: type: string format: date-time @@ -94036,7 +94201,7 @@ paths: pull request. ' - oneOf: *648 + oneOf: *650 nullable: true has_more_locations: type: boolean @@ -94178,7 +94343,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94200,16 +94365,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *344 - - *345 - - *442 - - *645 + - *346 + - *347 + - *444 + - *647 responses: '200': description: Response content: application/json: - schema: *649 + schema: *651 examples: default: value: @@ -94240,7 +94405,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94263,9 +94428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 requestBody: required: true content: @@ -94273,8 +94438,8 @@ paths: schema: type: object properties: - state: *646 - resolution: *647 + state: *648 + resolution: *649 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94310,7 +94475,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *651 examples: default: value: @@ -94383,7 +94548,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94405,9 +94570,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *344 - - *345 - - *442 + - *346 + - *347 + - *444 - *19 - *17 responses: @@ -94418,7 +94583,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &807 + items: &809 type: object properties: type: @@ -94444,8 +94609,6 @@ paths: example: commit details: oneOf: - - *650 - - *651 - *652 - *653 - *654 @@ -94457,6 +94620,8 @@ paths: - *660 - *661 - *662 + - *663 + - *664 examples: default: value: @@ -94516,11 +94681,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *68 + Link: *70 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94542,8 +94707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -94551,14 +94716,14 @@ paths: schema: type: object properties: - reason: &664 + reason: &666 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *663 + placeholder_id: *665 required: - reason - placeholder_id @@ -94575,7 +94740,7 @@ paths: schema: type: object properties: - reason: *664 + reason: *666 expire_at: type: string format: date-time @@ -94598,7 +94763,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *120 + '503': *122 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94621,13 +94786,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: - - *344 - - *345 + - *346 + - *347 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *120 + '503': *122 '200': description: Response content: @@ -94637,7 +94802,7 @@ paths: properties: incremental_scans: type: array - items: &665 + items: &667 description: Information on a single scan performed by secret scanning on the repository type: object @@ -94663,15 +94828,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *665 + items: *667 backfill_scans: type: array - items: *665 + items: *667 custom_pattern_backfill_scans: type: array items: allOf: - - *665 + - *667 - type: object properties: pattern_name: @@ -94684,7 +94849,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *665 + items: *667 examples: default: value: @@ -94749,8 +94914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *344 - - *345 + - *346 + - *347 - *62 - name: sort description: The property to sort the results by. @@ -94794,9 +94959,9 @@ paths: application/json: schema: type: array - items: *666 + items: *668 examples: - default: *667 + default: *669 '400': *14 '404': *6 x-github: @@ -94819,8 +94984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -94893,7 +95058,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *334 required: - login - type @@ -94980,9 +95145,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *668 examples: - default: &669 + default: &671 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95221,8 +95386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -95326,7 +95491,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *668 examples: default: value: @@ -95479,17 +95644,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *344 - - *345 - - *668 + - *346 + - *347 + - *670 responses: '200': description: Response content: application/json: - schema: *666 + schema: *668 examples: - default: *669 + default: *671 '403': *29 '404': *6 x-github: @@ -95513,9 +95678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *344 - - *345 - - *668 + - *346 + - *347 + - *670 requestBody: required: true content: @@ -95588,7 +95753,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *334 required: - login - type @@ -95674,17 +95839,17 @@ paths: description: Response content: application/json: - schema: *666 + schema: *668 examples: - default: *669 - add_credit: *669 + default: *671 + add_credit: *671 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *128 + schema: *130 examples: invalid_state_transition: value: @@ -95715,9 +95880,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: - - *344 - - *345 - - *668 + - *346 + - *347 + - *670 responses: '202': *39 '400': *14 @@ -95744,17 +95909,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *344 - - *345 - - *668 + - *346 + - *347 + - *670 responses: '202': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *349 + default: *351 '400': *14 '422': *15 '403': *29 @@ -95780,8 +95945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -95858,7 +96023,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -95880,8 +96045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95890,7 +96055,7 @@ paths: application/json: schema: type: array - items: &670 + items: &672 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95923,8 +96088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -96000,8 +96165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -96097,8 +96262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -96252,8 +96417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -96263,7 +96428,7 @@ paths: application/json: schema: type: array - items: *670 + items: *672 examples: default: value: @@ -96296,8 +96461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *344 - - *345 + - *346 + - *347 - name: sha in: path required: true @@ -96351,7 +96516,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *673 examples: default: value: @@ -96405,8 +96570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -96418,9 +96583,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96438,14 +96603,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &672 + schema: &674 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96513,8 +96678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: false content: @@ -96540,7 +96705,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: default: value: @@ -96567,8 +96732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -96588,8 +96753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -96645,7 +96810,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96668,8 +96833,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *344 - - *345 + - *346 + - *347 - name: ref in: path required: true @@ -96705,8 +96870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *344 - - *345 + - *346 + - *347 - *17 - *19 responses: @@ -96716,11 +96881,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *260 + default: *262 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -96738,8 +96903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *344 - - *345 + - *346 + - *347 - *19 - *17 responses: @@ -96747,7 +96912,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &675 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96759,7 +96924,7 @@ paths: required: - names examples: - default: &674 + default: &676 value: names: - octocat @@ -96782,8 +96947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -96814,9 +96979,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: *674 + default: *676 '404': *6 '422': *7 x-github: @@ -96837,9 +97002,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *344 - - *345 - - &675 + - *346 + - *347 + - &677 name: per description: The time frame to display results for. in: query @@ -96868,7 +97033,7 @@ paths: example: 128 clones: type: array - items: &676 + items: &678 title: Traffic type: object properties: @@ -96955,8 +97120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -97046,8 +97211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *344 - - *345 + - *346 + - *347 responses: '200': description: Response @@ -97107,9 +97272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *344 - - *345 - - *675 + - *346 + - *347 + - *677 responses: '200': description: Response @@ -97128,7 +97293,7 @@ paths: example: 3782 views: type: array - items: *676 + items: *678 required: - uniques - count @@ -97205,8 +97370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *344 - - *345 + - *346 + - *347 requestBody: required: true content: @@ -97242,7 +97407,7 @@ paths: description: Response content: application/json: - schema: *159 + schema: *161 examples: default: value: @@ -97486,8 +97651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -97510,8 +97675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -97533,8 +97698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -97560,8 +97725,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *344 - - *345 + - *346 + - *347 - name: ref in: path required: true @@ -97653,9 +97818,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *349 + default: *351 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97696,7 +97861,7 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: default: value: @@ -97888,7 +98053,7 @@ paths: html_url: type: string format: uri - repository: *159 + repository: *161 score: type: number file_size: @@ -97906,7 +98071,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &677 + text_matches: &679 title: Search Result Text Matches type: array items: @@ -98020,7 +98185,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *120 + '503': *122 '422': *15 '403': *29 x-github: @@ -98068,7 +98233,7 @@ paths: enum: - author-date - committer-date - - &678 + - &680 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 @@ -98139,7 +98304,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *409 + properties: *411 nullable: true comment_count: type: integer @@ -98159,7 +98324,7 @@ paths: url: type: string format: uri - verification: *533 + verification: *535 required: - author - committer @@ -98178,7 +98343,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *409 + properties: *411 nullable: true parents: type: array @@ -98191,12 +98356,12 @@ paths: type: string sha: type: string - repository: *159 + repository: *161 score: type: number node_id: type: string - text_matches: *677 + text_matches: *679 required: - sha - node_id @@ -98388,7 +98553,7 @@ paths: - interactions - created - updated - - *678 + - *680 - *17 - *19 - name: advanced_search @@ -98502,11 +98667,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: type: string state_reason: @@ -98523,8 +98688,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *280 - required: *281 + properties: *282 + required: *283 nullable: true comments: type: integer @@ -98538,7 +98703,7 @@ paths: type: string format: date-time nullable: true - text_matches: *677 + text_matches: *679 pull_request: type: object properties: @@ -98571,10 +98736,10 @@ paths: type: string score: type: number - author_association: *83 + author_association: *85 draft: type: boolean - repository: *80 + repository: *82 body_html: type: string body_text: @@ -98582,7 +98747,7 @@ paths: timeline_url: type: string format: uri - type: *243 + type: *245 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -98592,17 +98757,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - reactions: *84 + reactions: *86 required: - assignee - closed_at @@ -98790,7 +98955,7 @@ paths: - quoted_text items: - "..." - '503': *120 + '503': *122 '422': *15 '304': *37 '403': *29 @@ -98844,7 +99009,7 @@ paths: enum: - created - updated - - *678 + - *680 - *17 - *19 responses: @@ -98888,7 +99053,7 @@ paths: nullable: true score: type: number - text_matches: *677 + text_matches: *679 required: - id - node_id @@ -98973,7 +99138,7 @@ paths: - forks - help-wanted-issues - updated - - *678 + - *680 - *17 - *19 responses: @@ -99201,8 +99366,8 @@ paths: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true permissions: type: object @@ -99221,7 +99386,7 @@ paths: - admin - pull - push - text_matches: *677 + text_matches: *679 temp_clone_token: type: string allow_merge_commit: @@ -99423,7 +99588,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *120 + '503': *122 '422': *15 '304': *37 x-github: @@ -99521,7 +99686,7 @@ paths: type: string format: uri nullable: true - text_matches: *677 + text_matches: *679 related: type: array nullable: true @@ -99712,7 +99877,7 @@ paths: - followers - repositories - joined - - *678 + - *680 - *17 - *19 responses: @@ -99816,7 +99981,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *677 + text_matches: *679 blog: type: string nullable: true @@ -99875,7 +100040,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *120 + '503': *122 '422': *15 x-github: githubCloudOnly: false @@ -99895,7 +100060,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &681 + - &683 name: team_id description: The unique identifier of the team. in: path @@ -99907,9 +100072,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '404': *6 x-github: githubCloudOnly: false @@ -99936,7 +100101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *681 + - *683 requestBody: required: true content: @@ -99999,16 +100164,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '201': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 '404': *6 '422': *15 '403': *29 @@ -100036,7 +100201,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *681 + - *683 responses: '204': description: Response @@ -100065,7 +100230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *681 + - *683 - *17 - *19 responses: @@ -100075,11 +100240,11 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: - default: *238 + default: *240 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100103,7 +100268,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *681 + - *683 - name: role description: Filters members returned by their role in the team. in: query @@ -100126,9 +100291,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -100154,8 +100319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *681 - - *72 + - *683 + - *74 responses: '204': description: if user is a member @@ -100191,8 +100356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *681 - - *72 + - *683 + - *74 responses: '204': description: Response @@ -100231,8 +100396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *681 - - *72 + - *683 + - *74 responses: '204': description: Response @@ -100268,16 +100433,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *681 - - *72 + - *683 + - *74 responses: '200': description: Response content: application/json: - schema: *343 + schema: *345 examples: - response-if-user-is-a-team-maintainer: *682 + response-if-user-is-a-team-maintainer: *684 '404': *6 x-github: githubCloudOnly: false @@ -100310,8 +100475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *681 - - *72 + - *683 + - *74 requestBody: required: false content: @@ -100336,9 +100501,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: - response-if-users-membership-with-team-is-now-pending: *683 + response-if-users-membership-with-team-is-now-pending: *685 '403': description: Forbidden if team synchronization is set up '422': @@ -100372,8 +100537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *681 - - *72 + - *683 + - *74 responses: '204': description: Response @@ -100400,7 +100565,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *681 + - *683 - *17 - *19 responses: @@ -100410,11 +100575,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -100442,15 +100607,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *681 - - *344 - - *345 + - *683 + - *346 + - *347 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *684 + schema: *686 examples: alternative-response-with-extra-repository-information: value: @@ -100607,9 +100772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *681 - - *344 - - *345 + - *683 + - *346 + - *347 requestBody: required: false content: @@ -100659,9 +100824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *681 - - *344 - - *345 + - *683 + - *346 + - *347 responses: '204': description: Response @@ -100686,7 +100851,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *681 + - *683 - *17 - *19 responses: @@ -100696,11 +100861,11 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - response-if-child-teams-exist: *685 + response-if-child-teams-exist: *687 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '422': *15 @@ -100731,7 +100896,7 @@ paths: application/json: schema: oneOf: - - &687 + - &689 title: Private User description: Private User type: object @@ -100934,7 +101099,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *686 + - *688 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101087,7 +101252,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *689 examples: default: value: @@ -101166,7 +101331,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 '304': *37 '404': *6 '403': *29 @@ -101189,7 +101354,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: - - *72 + - *74 responses: '204': description: If the user is blocked @@ -101217,7 +101382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -101241,7 +101406,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -101290,9 +101455,9 @@ paths: type: integer codespaces: type: array - items: *248 + items: *250 examples: - default: *249 + default: *251 '304': *37 '500': *55 '401': *25 @@ -101431,21 +101596,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '401': *25 '403': *29 '404': *6 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101485,7 +101650,7 @@ paths: type: integer secrets: type: array - items: &688 + items: &690 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -101525,9 +101690,9 @@ paths: - visibility - selected_repositories_url examples: - default: *468 + default: *470 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101595,13 +101760,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '200': description: Response content: application/json: - schema: *688 + schema: *690 examples: default: value: @@ -101631,7 +101796,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 requestBody: required: true content: @@ -101676,7 +101841,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -101704,7 +101869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *167 + - *169 responses: '204': description: Response @@ -101729,7 +101894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 responses: '200': description: Response @@ -101745,9 +101910,9 @@ paths: type: integer repositories: type: array - items: *159 + items: *161 examples: - default: *196 + default: *198 '401': *25 '403': *29 '404': *6 @@ -101772,7 +101937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *167 + - *169 requestBody: required: true content: @@ -101826,7 +101991,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -101859,7 +102024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *167 + - *169 - name: repository_id in: path required: true @@ -101891,15 +102056,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '304': *37 '500': *55 '401': *25 @@ -101925,7 +102090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 requestBody: required: false content: @@ -101955,9 +102120,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '401': *25 '403': *29 '404': *6 @@ -101979,7 +102144,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 responses: '202': *39 '304': *37 @@ -102008,13 +102173,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 responses: '202': description: Response content: application/json: - schema: &689 + schema: &691 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102055,7 +102220,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &690 + default: &692 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102087,7 +102252,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *250 + - *252 - name: export_id in: path required: true @@ -102100,9 +102265,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *691 examples: - default: *690 + default: *692 '404': *6 x-github: githubCloudOnly: false @@ -102123,7 +102288,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *250 + - *252 responses: '200': description: Response @@ -102139,9 +102304,9 @@ paths: type: integer machines: type: array - items: *691 + items: *693 examples: - default: *692 + default: *694 '304': *37 '500': *55 '401': *25 @@ -102170,7 +102335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *250 + - *252 requestBody: required: true content: @@ -102220,13 +102385,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *347 + repository: *349 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *466 - required: *467 + properties: *468 + required: *469 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -103000,15 +103165,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '304': *37 '500': *55 '400': *14 @@ -103040,15 +103205,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *465 + default: *467 '500': *55 '401': *25 '403': *29 @@ -103078,9 +103243,9 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: &703 + default: &705 value: - id: 197 name: hello_docker @@ -103181,7 +103346,7 @@ paths: application/json: schema: type: array - items: &693 + items: &695 title: Email description: Email type: object @@ -103246,16 +103411,16 @@ paths: application/json: schema: type: array - items: *693 + items: *695 examples: - default: &705 + default: &707 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -103323,7 +103488,7 @@ paths: application/json: schema: type: array - items: *693 + items: *695 examples: default: value: @@ -103433,9 +103598,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103466,9 +103631,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -103488,7 +103653,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: - - *72 + - *74 responses: '204': description: if the person is followed by the authenticated user @@ -103518,7 +103683,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -103543,7 +103708,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *72 + - *74 responses: '204': description: Response @@ -103579,7 +103744,7 @@ paths: application/json: schema: type: array - items: &694 + items: &696 title: GPG Key description: A unique encryption key type: object @@ -103710,7 +103875,7 @@ paths: - subkeys - revoked examples: - default: &721 + default: &723 value: - id: 3 name: Octocat's GPG Key @@ -103742,7 +103907,7 @@ paths: revoked: false raw_key: string headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -103795,9 +103960,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: &695 + default: &697 value: id: 3 name: Octocat's GPG Key @@ -103854,7 +104019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &696 + - &698 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -103866,9 +104031,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *695 + default: *697 '404': *6 '304': *37 '403': *29 @@ -103891,7 +104056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *696 + - *698 responses: '204': description: Response @@ -104034,7 +104199,7 @@ paths: suspended_at: suspended_by: headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -104082,11 +104247,11 @@ paths: type: array items: allOf: - - *80 + - *82 examples: - default: *151 + default: *153 headers: - Link: *68 + Link: *70 '404': *6 '403': *29 '304': *37 @@ -104110,7 +104275,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -104136,7 +104301,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *148 + - *150 responses: '204': description: Response @@ -104170,12 +104335,12 @@ paths: application/json: schema: anyOf: - - *235 + - *237 - type: object properties: {} additionalProperties: false examples: - default: *236 + default: *238 '204': description: Response when there are no restrictions x-github: @@ -104199,7 +104364,7 @@ paths: required: true content: application/json: - schema: *544 + schema: *546 examples: default: value: @@ -104210,7 +104375,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: default: value: @@ -104291,7 +104456,7 @@ paths: - closed - all default: open - - *246 + - *248 - name: sort description: What to sort results by. in: query @@ -104304,7 +104469,7 @@ paths: - comments default: created - *62 - - *93 + - *95 - *17 - *19 responses: @@ -104314,11 +104479,11 @@ paths: application/json: schema: type: array - items: *86 + items: *88 examples: - default: *247 + default: *249 headers: - Link: *68 + Link: *70 '404': *6 '304': *37 x-github: @@ -104349,7 +104514,7 @@ paths: application/json: schema: type: array - items: &697 + items: &699 title: Key description: Key type: object @@ -104400,7 +104565,7 @@ paths: verified: false read_only: false headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -104450,9 +104615,9 @@ paths: description: Response content: application/json: - schema: *697 + schema: *699 examples: - default: &698 + default: &700 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -104485,15 +104650,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *580 + - *582 responses: '200': description: Response content: application/json: - schema: *697 + schema: *699 examples: - default: *698 + default: *700 '404': *6 '304': *37 '403': *29 @@ -104516,7 +104681,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *580 + - *582 responses: '204': description: Response @@ -104549,7 +104714,7 @@ paths: application/json: schema: type: array - items: &699 + items: &701 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104606,7 +104771,7 @@ paths: - id - type - login - plan: *104 + plan: *106 required: - billing_cycle - next_billing_date @@ -104617,7 +104782,7 @@ paths: - account - plan examples: - default: &700 + default: &702 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104650,7 +104815,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *68 + Link: *70 '304': *37 '401': *25 '404': *6 @@ -104679,11 +104844,11 @@ paths: application/json: schema: type: array - items: *699 + items: *701 examples: - default: *700 + default: *702 headers: - Link: *68 + Link: *70 '304': *37 '401': *25 x-github: @@ -104721,7 +104886,7 @@ paths: application/json: schema: type: array - items: *252 + items: *254 examples: default: value: @@ -104804,7 +104969,7 @@ paths: type: User site_admin: false headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -104829,13 +104994,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *252 + schema: *254 examples: default: value: @@ -104897,7 +105062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 requestBody: required: true content: @@ -104922,7 +105087,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: default: value: @@ -104994,7 +105159,7 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: default: value: @@ -105147,7 +105312,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -105247,7 +105412,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: default: value: @@ -105427,7 +105592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *255 + - *257 - name: exclude in: query required: false @@ -105440,7 +105605,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: default: value: @@ -105634,7 +105799,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *255 + - *257 responses: '302': description: Response @@ -105660,7 +105825,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *255 + - *257 responses: '204': description: Response @@ -105689,8 +105854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *255 - - *701 + - *257 + - *703 responses: '204': description: Response @@ -105714,7 +105879,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *255 + - *257 - *17 - *19 responses: @@ -105724,11 +105889,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 '404': *6 x-github: githubCloudOnly: false @@ -105779,11 +105944,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -105823,7 +105988,7 @@ paths: - docker - nuget - container - - *702 + - *704 - *19 - *17 responses: @@ -105833,10 +105998,10 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *703 - '400': *704 + default: *705 + '400': *706 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105856,16 +106021,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: &722 + default: &724 value: id: 40201 name: octo-name @@ -105978,8 +106143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 + - *266 responses: '204': description: Response @@ -106009,8 +106174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 + - *266 - name: token description: package token schema: @@ -106042,8 +106207,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: - - *263 - - *264 + - *265 + - *266 - *19 - *17 - name: state @@ -106063,7 +106228,7 @@ paths: application/json: schema: type: array - items: *265 + items: *267 examples: default: value: @@ -106112,15 +106277,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 - *266 + - *268 responses: '200': description: Response content: application/json: - schema: *265 + schema: *267 examples: default: value: @@ -106156,9 +106321,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 - *266 + - *268 responses: '204': description: Response @@ -106188,9 +106353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *263 - - *264 + - *265 - *266 + - *268 responses: '204': description: Response @@ -106227,11 +106392,11 @@ paths: application/json: schema: type: array - items: *693 + items: *695 examples: - default: *705 + default: *707 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106340,9 +106505,9 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default: &712 + default: &714 summary: Default response value: - id: 1296269 @@ -106463,7 +106628,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '422': *15 '304': *37 '403': *29 @@ -106646,9 +106811,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *349 + default: *351 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106692,11 +106857,11 @@ paths: application/json: schema: type: array - items: *546 + items: *548 examples: - default: *706 + default: *708 headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106717,7 +106882,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *239 + - *241 responses: '204': description: Response @@ -106746,7 +106911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *239 + - *241 responses: '204': description: Response @@ -106779,7 +106944,7 @@ paths: application/json: schema: type: array - items: &707 + items: &709 title: Social account description: Social media account type: object @@ -106794,12 +106959,12 @@ paths: - provider - url examples: - default: &708 + default: &710 value: - provider: twitter url: https://twitter.com/github headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -106856,9 +107021,9 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: *708 + default: *710 '422': *15 '304': *37 '404': *6 @@ -106945,7 +107110,7 @@ paths: application/json: schema: type: array - items: &709 + items: &711 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -106965,7 +107130,7 @@ paths: - title - created_at examples: - default: &740 + default: &742 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106976,7 +107141,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -107029,9 +107194,9 @@ paths: description: Response content: application/json: - schema: *709 + schema: *711 examples: - default: &710 + default: &712 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107061,7 +107226,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: - - &711 + - &713 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107073,9 +107238,9 @@ paths: description: Response content: application/json: - schema: *709 + schema: *711 examples: - default: *710 + default: *712 '404': *6 '304': *37 '403': *29 @@ -107098,7 +107263,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: - - *711 + - *713 responses: '204': description: Response @@ -107127,7 +107292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &741 + - &743 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 @@ -107150,13 +107315,13 @@ paths: application/json: schema: type: array - items: *80 + items: *82 examples: - default-response: *712 + default-response: *714 application/vnd.github.v3.star+json: schema: type: array - items: &742 + items: &744 title: Starred Repository description: Starred Repository type: object @@ -107164,7 +107329,7 @@ paths: starred_at: type: string format: date-time - repo: *80 + repo: *82 required: - starred_at - repo @@ -107292,7 +107457,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -107312,8 +107477,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: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response if this repository is starred by you @@ -107341,8 +107506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -107366,8 +107531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *344 - - *345 + - *346 + - *347 responses: '204': description: Response @@ -107400,11 +107565,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -107439,7 +107604,7 @@ paths: application/json: schema: type: array - items: *340 + items: *342 examples: default: value: @@ -107490,7 +107655,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *68 + Link: *70 '304': *37 '404': *6 '403': *29 @@ -107517,7 +107682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *106 + - *108 responses: '200': description: Response @@ -107525,10 +107690,10 @@ paths: application/json: schema: oneOf: - - *687 - - *686 + - *689 + - *688 examples: - default-response: &716 + default-response: &718 summary: Default response value: login: octocat @@ -107563,7 +107728,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &717 + response-with-git-hub-plan-information: &719 summary: Response with GitHub plan information value: login: octocat @@ -107620,14 +107785,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &714 + - &716 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *279 + - *281 requestBody: required: true description: Details of the draft item to create in the project. @@ -107661,9 +107826,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *287 examples: - draft_issue: *286 + draft_issue: *288 '304': *37 '403': *29 '401': *25 @@ -107686,7 +107851,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *713 + - *715 - *17 responses: '200': @@ -107697,7 +107862,7 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: Link: example: ; rel="next" @@ -107721,8 +107886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *714 - - *279 + - *716 + - *281 requestBody: required: true content: @@ -107793,17 +107958,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *715 + schema: *717 examples: table_view: summary: Response for creating a table view - value: *290 + value: *292 board_view: summary: Response for creating a board view with filter - value: *290 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *290 + value: *292 '304': *37 '403': *29 '401': *25 @@ -107837,7 +108002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *72 + - *74 responses: '200': description: Response @@ -107845,11 +108010,11 @@ paths: application/json: schema: oneOf: - - *687 - - *686 + - *689 + - *688 examples: - default-response: *716 - response-with-git-hub-plan-information: *717 + default-response: *718 + response-with-git-hub-plan-information: *719 '404': *6 x-github: githubCloudOnly: false @@ -107875,7 +108040,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 requestBody: required: true content: @@ -107899,8 +108064,8 @@ paths: required: - subject_digests examples: - default: *718 - withPredicateType: *719 + default: *720 + withPredicateType: *721 responses: '200': description: Response @@ -107953,7 +108118,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *720 + default: *722 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107986,7 +108151,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *72 + - *74 requestBody: required: true content: @@ -108051,7 +108216,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -108082,7 +108247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *72 + - *74 - name: attestation_id description: Attestation ID in: path @@ -108120,7 +108285,7 @@ paths: - *17 - *47 - *48 - - *72 + - *74 - name: subject_digest description: Subject Digest in: path @@ -108173,12 +108338,12 @@ paths: initiator: type: string examples: - default: *405 + default: *407 '201': description: Response content: application/json: - schema: *168 + schema: *170 examples: default: value: @@ -108218,7 +108383,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: - - *72 + - *74 responses: '200': description: Response @@ -108226,9 +108391,9 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *703 + default: *705 '403': *29 '401': *25 x-github: @@ -108251,7 +108416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108261,7 +108426,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108323,8 +108488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *72 - - *76 + - *74 + - *78 - *17 - *19 responses: @@ -108334,7 +108499,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108411,7 +108576,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108421,7 +108586,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -108479,7 +108644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108491,9 +108656,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108510,7 +108675,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108522,9 +108687,9 @@ paths: type: array items: *4 examples: - default: *71 + default: *73 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108541,7 +108706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *72 + - *74 - name: target_user in: path required: true @@ -108568,8 +108733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *72 - - *93 + - *74 + - *95 - *17 - *19 responses: @@ -108579,11 +108744,11 @@ paths: application/json: schema: type: array - items: *94 + items: *96 examples: - default: *95 + default: *97 headers: - Link: *68 + Link: *70 '422': *15 x-github: githubCloudOnly: false @@ -108602,7 +108767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108612,11 +108777,11 @@ paths: application/json: schema: type: array - items: *694 + items: *696 examples: - default: *721 + default: *723 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108638,7 +108803,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *72 + - *74 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -108710,7 +108875,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *72 + - *74 responses: '200': description: Response @@ -108718,7 +108883,7 @@ paths: application/json: schema: *22 examples: - default: *543 + default: *545 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108736,7 +108901,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108771,7 +108936,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108791,7 +108956,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -108801,11 +108966,11 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *117 + default: *119 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108842,8 +109007,8 @@ paths: - docker - nuget - container - - *702 - - *72 + - *704 + - *74 - *19 - *17 responses: @@ -108853,12 +109018,12 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *703 + default: *705 '403': *29 '401': *25 - '400': *704 + '400': *706 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108878,17 +109043,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *263 - - *264 - - *72 + - *265 + - *266 + - *74 responses: '200': description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *722 + default: *724 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108909,9 +109074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *263 - - *264 - - *72 + - *265 + - *266 + - *74 responses: '204': description: Response @@ -108943,9 +109108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *263 - - *264 - - *72 + - *265 + - *266 + - *74 - name: token description: package token schema: @@ -108977,9 +109142,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: - - *263 - - *264 - - *72 + - *265 + - *266 + - *74 responses: '200': description: Response @@ -108987,7 +109152,7 @@ paths: application/json: schema: type: array - items: *265 + items: *267 examples: default: value: @@ -109045,16 +109210,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *263 - - *264 + - *265 - *266 - - *72 + - *268 + - *74 responses: '200': description: Response content: application/json: - schema: *265 + schema: *267 examples: default: value: @@ -109089,10 +109254,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *263 - - *264 - - *72 + - *265 - *266 + - *74 + - *268 responses: '204': description: Response @@ -109124,10 +109289,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *263 - - *264 - - *72 + - *265 - *266 + - *74 + - *268 responses: '204': description: Response @@ -109151,7 +109316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *72 + - *74 - name: q description: Limit results to projects of the specified type. in: query @@ -109168,11 +109333,11 @@ paths: application/json: schema: type: array - items: *277 + items: *279 examples: - default: *278 + default: *280 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109192,18 +109357,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *279 - - *72 + - *281 + - *74 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: - default: *278 + default: *280 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109223,8 +109388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *279 - - *72 + - *281 + - *74 - *17 - *47 - *48 @@ -109235,11 +109400,11 @@ paths: application/json: schema: type: array - items: *283 + items: *285 examples: - default: *723 + default: *725 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109258,8 +109423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *72 - - *279 + - *74 + - *281 requestBody: required: true content: @@ -109297,7 +109462,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *724 + items: *726 required: - name - data_type @@ -109313,7 +109478,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *725 + iteration_configuration: *727 required: - name - data_type @@ -109335,20 +109500,20 @@ paths: value: name: Due date data_type: date - single_select_field: *726 - iteration_field: *727 + single_select_field: *728 + iteration_field: *729 responses: '201': description: Response content: application/json: - schema: *283 + schema: *285 examples: - text_field: *728 - number_field: *729 - date_field: *730 - single_select_field: *731 - iteration_field: *732 + text_field: *730 + number_field: *731 + date_field: *732 + single_select_field: *733 + iteration_field: *734 '304': *37 '403': *29 '401': *25 @@ -109369,19 +109534,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *279 - - *733 - - *72 + - *281 + - *735 + - *74 responses: '200': description: Response content: application/json: - schema: *283 + schema: *285 examples: - default: *734 + default: *736 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109402,8 +109567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *279 - - *72 + - *281 + - *74 - *47 - *48 - *17 @@ -109435,11 +109600,11 @@ paths: application/json: schema: type: array - items: *287 + items: *289 examples: - default: *288 + default: *290 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109458,8 +109623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *72 - - *279 + - *74 + - *281 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -109529,22 +109694,22 @@ paths: description: Response content: application/json: - schema: *285 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *286 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *286 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *286 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *286 + value: *288 '304': *37 '403': *29 '401': *25 @@ -109564,9 +109729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *279 - - *72 - - *289 + - *281 + - *74 + - *291 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -109586,11 +109751,11 @@ paths: description: Response content: application/json: - schema: *287 + schema: *289 examples: - default: *288 + default: *290 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109609,9 +109774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *279 - - *72 - - *289 + - *281 + - *74 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -109681,13 +109846,13 @@ paths: description: Response content: application/json: - schema: *287 + schema: *289 examples: - text_field: *288 - number_field: *288 - date_field: *288 - single_select_field: *288 - iteration_field: *288 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *25 '403': *29 '404': *6 @@ -109707,9 +109872,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *279 - - *72 - - *289 + - *281 + - *74 + - *291 responses: '204': description: Response @@ -109731,9 +109896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *279 - - *72 - - *735 + - *281 + - *74 + - *737 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -109759,11 +109924,11 @@ paths: application/json: schema: type: array - items: *287 + items: *289 examples: - default: *288 + default: *290 headers: - Link: *68 + Link: *70 '304': *37 '403': *29 '401': *25 @@ -109789,7 +109954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109799,7 +109964,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -109864,7 +110029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -109874,7 +110039,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -109937,7 +110102,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *72 + - *74 - name: type description: Limit results to repositories of the specified type. in: query @@ -109980,11 +110145,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110004,12 +110169,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *736 + - *126 - *125 + - *738 + - *127 responses: '200': description: Response when getting a billing premium request usage report @@ -110117,7 +110282,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110137,10 +110302,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *72 - - *122 - - *737 - - *123 + - *74 + - *124 + - *739 + - *125 responses: '200': description: Response when getting a billing usage report @@ -110211,7 +110376,7 @@ paths: '400': *14 '403': *29 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110234,13 +110399,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *72 - - *122 + - *74 - *124 - - *123 - - *738 + - *126 - *125 - - *739 + - *740 + - *127 + - *741 responses: '200': description: Response when getting a billing usage summary @@ -110346,7 +110511,7 @@ paths: '403': *29 '404': *6 '500': *55 - '503': *120 + '503': *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110364,7 +110529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -110374,11 +110539,11 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: *708 + default: *710 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110396,7 +110561,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -110406,11 +110571,11 @@ paths: application/json: schema: type: array - items: *709 + items: *711 examples: - default: *740 + default: *742 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110432,8 +110597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *72 - - *741 + - *74 + - *743 - *62 - *17 - *19 @@ -110445,13 +110610,13 @@ paths: schema: anyOf: - type: array - items: *742 + items: *744 - type: array - items: *80 + items: *82 examples: - default-response: *712 + default-response: *714 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110468,7 +110633,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *72 + - *74 - *17 - *19 responses: @@ -110478,11 +110643,11 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *267 + default: *269 headers: - Link: *68 + Link: *70 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110608,7 +110773,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &743 + enterprise: &745 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110666,7 +110831,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &744 + installation: &746 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110685,7 +110850,7 @@ x-webhooks: required: - id - node_id - organization: &745 + organization: &747 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -110745,13 +110910,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &746 + repository: &748 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: &778 + properties: &780 id: description: Unique identifier of the repository example: 42 @@ -110771,8 +110936,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *89 - required: *90 + properties: *91 + required: *92 nullable: true organization: title: Simple User @@ -111446,7 +111611,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &779 + required: &781 - archive_url - assignees_url - blobs_url @@ -111520,7 +111685,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &780 + x-github-breaking-changes: &782 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -111611,10 +111776,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -111690,11 +111855,11 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - rule: &747 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + rule: &749 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) @@ -111917,11 +112082,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - rule: *747 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + rule: *749 sender: *4 required: - action @@ -112104,11 +112269,11 @@ x-webhooks: - everyone required: - from - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - rule: *747 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + rule: *749 sender: *4 required: - action @@ -112192,7 +112357,7 @@ x-webhooks: type: string enum: - completed - check_run: &749 + check_run: &751 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112245,8 +112410,8 @@ x-webhooks: type: string pull_requests: type: array - items: *91 - repository: *159 + items: *93 + repository: *161 status: example: completed type: string @@ -112283,7 +112448,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *748 + deployment: *750 details_url: example: https://example.com type: string @@ -112333,7 +112498,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *91 + items: *93 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -112368,10 +112533,10 @@ x-webhooks: - output - app - pull_requests - installation: *744 - enterprise: *743 - organization: *745 - repository: *746 + installation: *746 + enterprise: *745 + organization: *747 + repository: *748 sender: *4 required: - check_run @@ -112762,11 +112927,11 @@ x-webhooks: type: string enum: - created - check_run: *749 - installation: *744 - enterprise: *743 - organization: *745 - repository: *746 + check_run: *751 + installation: *746 + enterprise: *745 + organization: *747 + repository: *748 sender: *4 required: - check_run @@ -113160,11 +113325,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *749 - installation: *744 - enterprise: *743 - organization: *745 - repository: *746 + check_run: *751 + installation: *746 + enterprise: *745 + organization: *747 + repository: *748 requested_action: description: The action requested by the user. type: object @@ -113567,11 +113732,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *749 - installation: *744 - enterprise: *743 - organization: *745 - repository: *746 + check_run: *751 + installation: *746 + enterprise: *745 + organization: *747 + repository: *748 sender: *4 required: - check_run @@ -114541,10 +114706,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -115233,10 +115398,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -115919,10 +116084,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -116088,7 +116253,7 @@ x-webhooks: required: - login - id - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116233,20 +116398,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &750 + commit_oid: &752 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: *743 - installation: *744 - organization: *745 - ref: &751 + enterprise: *745 + installation: *746 + organization: *747 + ref: &753 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: *746 + repository: *748 sender: *4 required: - action @@ -116411,7 +116576,7 @@ x-webhooks: required: - login - id - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116641,12 +116806,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *750 - enterprise: *743 - installation: *744 - organization: *745 - ref: *751 - repository: *746 + commit_oid: *752 + enterprise: *745 + installation: *746 + organization: *747 + ref: *753 + repository: *748 sender: *4 required: - action @@ -116741,7 +116906,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116912,12 +117077,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *750 - enterprise: *743 - installation: *744 - organization: *745 - ref: *751 - repository: *746 + commit_oid: *752 + enterprise: *745 + installation: *746 + organization: *747 + ref: *753 + repository: *748 sender: *4 required: - action @@ -117083,7 +117248,7 @@ x-webhooks: required: - login - id - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117249,12 +117414,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *750 - enterprise: *743 - installation: *744 - organization: *745 - ref: *751 - repository: *746 + commit_oid: *752 + enterprise: *745 + installation: *746 + organization: *747 + ref: *753 + repository: *748 sender: *4 required: - action @@ -117353,7 +117518,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117528,16 +117693,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 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: *746 + repository: *748 sender: *4 required: - action @@ -117634,7 +117799,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117774,12 +117939,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *750 - enterprise: *743 - installation: *744 - organization: *745 - ref: *751 - repository: *746 + commit_oid: *752 + enterprise: *745 + installation: *746 + organization: *747 + ref: *753 + repository: *748 sender: *4 required: - action @@ -117945,7 +118110,7 @@ x-webhooks: required: - login - id - dismissed_comment: *437 + dismissed_comment: *439 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -118090,10 +118255,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -118348,10 +118513,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -118431,18 +118596,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *745 - pusher_type: &752 + organization: *747 + pusher_type: &754 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &753 + ref: &755 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -118452,7 +118617,7 @@ x-webhooks: enum: - tag - branch - repository: *746 + repository: *748 sender: *4 required: - ref @@ -118534,10 +118699,10 @@ x-webhooks: type: string enum: - created - definition: *291 - enterprise: *743 - installation: *744 - organization: *745 + definition: *293 + enterprise: *745 + installation: *746 + organization: *747 sender: *4 required: - action @@ -118622,9 +118787,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 sender: *4 required: - action @@ -118701,10 +118866,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *291 - enterprise: *743 - installation: *744 - organization: *745 + definition: *293 + enterprise: *745 + installation: *746 + organization: *747 sender: *4 required: - action @@ -118781,10 +118946,10 @@ x-webhooks: type: string enum: - updated - definition: *291 - enterprise: *743 - installation: *744 - organization: *745 + definition: *293 + enterprise: *745 + installation: *746 + organization: *747 sender: *4 required: - action @@ -118861,19 +119026,19 @@ x-webhooks: type: string enum: - updated - enterprise: *743 - installation: *744 - repository: *746 - organization: *745 + enterprise: *745 + installation: *746 + repository: *748 + organization: *747 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *295 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *295 + items: *297 required: - action - repository @@ -118949,18 +119114,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *743 - installation: *744 - organization: *745 - pusher_type: *752 - ref: *753 + enterprise: *745 + installation: *746 + organization: *747 + pusher_type: *754 + ref: *755 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *746 + repository: *748 sender: *4 required: - ref @@ -119040,11 +119205,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119124,11 +119289,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119209,11 +119374,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119294,11 +119459,11 @@ x-webhooks: type: string enum: - created - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119377,11 +119542,11 @@ x-webhooks: type: string enum: - dismissed - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119460,11 +119625,11 @@ x-webhooks: type: string enum: - fixed - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119544,11 +119709,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119627,11 +119792,11 @@ x-webhooks: type: string enum: - reopened - alert: *501 - installation: *744 - organization: *745 - enterprise: *743 - repository: *746 + alert: *503 + installation: *746 + organization: *747 + enterprise: *745 + repository: *748 sender: *4 required: - action @@ -119708,9 +119873,9 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - key: &754 + enterprise: *745 + installation: *746 + key: &756 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119746,8 +119911,8 @@ x-webhooks: - verified - created_at - read_only - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -119824,11 +119989,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - key: *754 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + key: *756 + organization: *747 + repository: *748 sender: *4 required: - action @@ -120384,12 +120549,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - workflow: &760 + workflow: &762 title: Workflow type: object nullable: true @@ -121130,15 +121295,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *755 - required: *756 + properties: *757 + required: *758 nullable: true pull_requests: type: array - items: *599 - repository: *746 - organization: *745 - installation: *744 + items: *601 + repository: *748 + organization: *747 + installation: *746 sender: *4 responses: '200': @@ -121209,7 +121374,7 @@ x-webhooks: type: string enum: - approved - approver: &757 + approver: &759 type: object properties: avatar_url: @@ -121252,11 +121417,11 @@ x-webhooks: type: string comment: type: string - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - reviewers: &758 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + reviewers: &760 type: array items: type: object @@ -121335,7 +121500,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &759 + workflow_job_run: &761 type: object properties: conclusion: @@ -122066,18 +122231,18 @@ x-webhooks: type: string enum: - rejected - approver: *757 + approver: *759 comment: type: string - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - reviewers: *758 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + reviewers: *760 sender: *4 since: type: string - workflow_job_run: *759 + workflow_job_run: *761 workflow_job_runs: type: array items: @@ -122781,13 +122946,13 @@ x-webhooks: type: string enum: - requested - enterprise: *743 + enterprise: *745 environment: type: string - installation: *744 - organization: *745 - repository: *746 - requestor: &765 + installation: *746 + organization: *747 + repository: *748 + requestor: &767 title: User type: object nullable: true @@ -124676,12 +124841,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - workflow: *760 + workflow: *762 workflow_run: title: Deployment Workflow Run type: object @@ -125361,7 +125526,7 @@ x-webhooks: type: string enum: - answered - answer: &763 + answer: &765 type: object properties: author_association: @@ -125518,11 +125683,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -125649,11 +125814,11 @@ x-webhooks: - from required: - category - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -125736,11 +125901,11 @@ x-webhooks: type: string enum: - closed - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -125822,7 +125987,7 @@ x-webhooks: type: string enum: - created - comment: &762 + comment: &764 type: object properties: author_association: @@ -125979,11 +126144,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126066,12 +126231,12 @@ x-webhooks: type: string enum: - deleted - comment: *762 - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + comment: *764 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126166,12 +126331,12 @@ x-webhooks: - from required: - body - comment: *762 - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + comment: *764 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126255,11 +126420,11 @@ x-webhooks: type: string enum: - created - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126341,11 +126506,11 @@ x-webhooks: type: string enum: - deleted - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126445,11 +126610,11 @@ x-webhooks: type: string required: - from - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126531,10 +126696,10 @@ x-webhooks: type: string enum: - labeled - discussion: *761 - enterprise: *743 - installation: *744 - label: &764 + discussion: *763 + enterprise: *745 + installation: *746 + label: &766 title: Label type: object properties: @@ -126566,8 +126731,8 @@ x-webhooks: - color - default - description - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126650,11 +126815,11 @@ x-webhooks: type: string enum: - locked - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126736,11 +126901,11 @@ x-webhooks: type: string enum: - pinned - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126822,11 +126987,11 @@ x-webhooks: type: string enum: - reopened - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -126911,16 +127076,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *761 - new_repository: *746 + new_discussion: *763 + new_repository: *748 required: - new_discussion - new_repository - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -127003,10 +127168,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *761 - old_answer: *763 - organization: *745 - repository: *746 + discussion: *763 + old_answer: *765 + organization: *747 + repository: *748 sender: *4 required: - action @@ -127088,12 +127253,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *761 - enterprise: *743 - installation: *744 - label: *764 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -127176,11 +127341,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -127262,11 +127427,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *761 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + discussion: *763 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -127339,7 +127504,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *743 + enterprise: *745 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -127999,9 +128164,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *744 - organization: *745 - repository: *746 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - forkee @@ -128147,9 +128312,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pages: description: The pages that were updated. type: array @@ -128186,7 +128351,7 @@ x-webhooks: - action - sha - html_url - repository: *746 + repository: *748 sender: *4 required: - pages @@ -128262,10 +128427,10 @@ x-webhooks: type: string enum: - created - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories: &766 + organization: *747 + repositories: &768 description: An array of repository objects that the installation can access. type: array @@ -128291,8 +128456,8 @@ x-webhooks: - name - full_name - private - repository: *746 - requester: *765 + repository: *748 + requester: *767 sender: *4 required: - action @@ -128367,11 +128532,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories: *766 - repository: *746 + organization: *747 + repositories: *768 + repository: *748 requester: nullable: true sender: *4 @@ -128447,11 +128612,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories: *766 - repository: *746 + organization: *747 + repositories: *768 + repository: *748 requester: nullable: true sender: *4 @@ -128527,10 +128692,10 @@ x-webhooks: type: string enum: - added - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories_added: &767 + organization: *747 + repositories_added: &769 description: An array of repository objects, which were added to the installation. type: array @@ -128576,15 +128741,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *746 - repository_selection: &768 + repository: *748 + repository_selection: &770 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *765 + requester: *767 sender: *4 required: - action @@ -128663,10 +128828,10 @@ x-webhooks: type: string enum: - removed - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories_added: *767 + organization: *747 + repositories_added: *769 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128693,9 +128858,9 @@ x-webhooks: - name - full_name - private - repository: *746 - repository_selection: *768 - requester: *765 + repository: *748 + repository_selection: *770 + requester: *767 sender: *4 required: - action @@ -128774,11 +128939,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories: *766 - repository: *746 + organization: *747 + repositories: *768 + repository: *748 requester: nullable: true sender: *4 @@ -128956,10 +129121,10 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 target_type: type: string @@ -129038,11 +129203,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *743 + enterprise: *745 installation: *22 - organization: *745 - repositories: *766 - repository: *746 + organization: *747 + repositories: *768 + repository: *748 requester: nullable: true sender: *4 @@ -129166,8 +129331,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *81 - required: *82 + properties: *83 + required: *84 reactions: title: Reactions type: object @@ -129216,8 +129381,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *576 - required: *577 + properties: *578 + required: *579 nullable: true user: title: User @@ -129302,8 +129467,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130092,8 +130257,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130109,7 +130274,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -130442,8 +130607,8 @@ x-webhooks: - state - locked - assignee - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -130523,7 +130688,7 @@ x-webhooks: type: string enum: - deleted - comment: &769 + comment: &771 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -130680,8 +130845,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *576 - required: *577 + properties: *578 + required: *579 nullable: true required: - url @@ -130696,8 +130861,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131482,8 +131647,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131499,7 +131664,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -131834,8 +131999,8 @@ x-webhooks: - state - locked - assignee - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -131915,7 +132080,7 @@ x-webhooks: type: string enum: - edited - changes: &799 + changes: &801 description: The changes to the comment. type: object properties: @@ -131927,9 +132092,9 @@ x-webhooks: type: string required: - from - comment: *769 - enterprise: *743 - installation: *744 + comment: *771 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132717,8 +132882,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132734,7 +132899,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -133067,8 +133232,8 @@ x-webhooks: - state - locked - assignee - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -133149,9 +133314,9 @@ x-webhooks: type: string enum: - pinned - comment: *769 - enterprise: *743 - installation: *744 + comment: *771 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133941,8 +134106,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133958,7 +134123,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -134293,8 +134458,8 @@ x-webhooks: - state - locked - assignee - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -134374,9 +134539,9 @@ x-webhooks: type: string enum: - unpinned - comment: *769 - enterprise: *743 - installation: *744 + comment: *771 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135166,8 +135331,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135183,7 +135348,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -135518,8 +135683,8 @@ x-webhooks: - state - locked - assignee - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -135602,15 +135767,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *744 - organization: *745 - repository: *746 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -135693,15 +135858,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 + blocked_issue: *88 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - blocking_issue_repo: *80 - installation: *744 - organization: *745 - repository: *746 + blocking_issue: *88 + blocking_issue_repo: *82 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -135783,15 +135948,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *744 - organization: *745 - repository: *746 + blocking_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -135874,15 +136039,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *86 - blocked_issue_repo: *80 + blocked_issue: *88 + blocked_issue_repo: *82 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *86 - installation: *744 - organization: *745 - repository: *746 + blocking_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -135962,10 +136127,10 @@ x-webhooks: type: string enum: - assigned - assignee: *765 - enterprise: *743 - installation: *744 - issue: &772 + assignee: *767 + enterprise: *745 + installation: *746 + issue: &774 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136754,14 +136919,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136777,7 +136942,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -136878,8 +137043,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -136959,8 +137124,8 @@ x-webhooks: type: string enum: - closed - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137754,14 +137919,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137777,7 +137942,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -138013,8 +138178,8 @@ x-webhooks: required: - state - closed_at - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -138093,8 +138258,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138879,14 +139044,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138902,7 +139067,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -139002,8 +139167,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -139082,8 +139247,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139890,14 +140055,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139913,7 +140078,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -139992,7 +140157,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &770 + milestone: &772 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140130,8 +140295,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -140230,8 +140395,8 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141020,14 +141185,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141040,7 +141205,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *243 + type: *245 title: description: Title of the issue type: string @@ -141144,9 +141309,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *764 - organization: *745 - repository: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -141226,8 +141391,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142015,14 +142180,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142035,7 +142200,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *243 + type: *245 title: description: Title of the issue type: string @@ -142139,9 +142304,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *764 - organization: *745 - repository: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -142221,8 +142386,8 @@ x-webhooks: type: string enum: - locked - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143034,14 +143199,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143054,7 +143219,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *243 + type: *245 title: description: Title of the issue type: string @@ -143135,8 +143300,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -143215,8 +143380,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144022,14 +144187,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144045,7 +144210,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -144123,9 +144288,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *770 - organization: *745 - repository: *746 + milestone: *772 + organization: *747 + repository: *748 sender: *4 required: - action @@ -144988,11 +145153,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145020,8 +145185,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -145093,7 +145258,7 @@ x-webhooks: required: - login - id - type: *243 + type: *245 required: - id - number @@ -145573,8 +145738,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146358,11 +146523,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146378,7 +146543,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -146391,8 +146556,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true user: title: User @@ -146486,8 +146651,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -146567,9 +146732,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *743 - installation: *744 - issue: &771 + enterprise: *745 + installation: *746 + issue: &773 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147352,14 +147517,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147375,7 +147540,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -147475,8 +147640,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -147555,8 +147720,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148366,14 +148531,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148467,9 +148632,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *243 - organization: *745 - repository: *746 + type: *245 + organization: *747 + repository: *748 sender: *4 required: - action @@ -149335,14 +149500,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149358,7 +149523,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -149937,11 +150102,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *743 - installation: *744 - issue: *771 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *773 + organization: *747 + repository: *748 sender: *4 required: - action @@ -150021,12 +150186,12 @@ x-webhooks: type: string enum: - typed - enterprise: *743 - installation: *744 - issue: *772 - type: *243 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *774 + type: *245 + organization: *747 + repository: *748 sender: *4 required: - action @@ -150107,7 +150272,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &802 + assignee: &804 title: User type: object nullable: true @@ -150177,11 +150342,11 @@ x-webhooks: required: - login - id - enterprise: *743 - installation: *744 - issue: *772 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *774 + organization: *747 + repository: *748 sender: *4 required: - action @@ -150260,12 +150425,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *743 - installation: *744 - issue: *772 - label: *764 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *774 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -150345,8 +150510,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151156,14 +151321,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *87 - required: *88 + properties: *89 + required: *90 nullable: true - sub_issues_summary: *679 - issue_dependencies_summary: *680 + sub_issues_summary: *681 + issue_dependencies_summary: *682 issue_field_values: type: array - items: *560 + items: *562 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151179,7 +151344,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *243 + type: *245 updated_at: type: string format: date-time @@ -151257,8 +151422,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151338,11 +151503,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *743 - installation: *744 - issue: *771 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *773 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151421,12 +151586,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *743 - installation: *744 - issue: *772 - type: *243 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + issue: *774 + type: *245 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151506,11 +151671,11 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - label: *764 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151588,11 +151753,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - label: *764 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151702,11 +151867,11 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - label: *764 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + label: *766 + organization: *747 + repository: *748 sender: *4 required: - action @@ -151788,9 +151953,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *743 - installation: *744 - marketplace_purchase: &773 + enterprise: *745 + installation: *746 + marketplace_purchase: &775 title: Marketplace Purchase type: object required: @@ -151873,8 +152038,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *745 - previous_marketplace_purchase: &774 + organization: *747 + previous_marketplace_purchase: &776 title: Marketplace Purchase type: object properties: @@ -151954,7 +152119,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *746 + repository: *748 sender: *4 required: - action @@ -152034,10 +152199,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *743 - installation: *744 - marketplace_purchase: *773 - organization: *745 + enterprise: *745 + installation: *746 + marketplace_purchase: *775 + organization: *747 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152120,7 +152285,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *746 + repository: *748 sender: *4 required: - action @@ -152202,10 +152367,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *743 - installation: *744 - marketplace_purchase: *773 - organization: *745 + enterprise: *745 + installation: *746 + marketplace_purchase: *775 + organization: *747 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152287,7 +152452,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *746 + repository: *748 sender: *4 required: - action @@ -152368,8 +152533,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 marketplace_purchase: title: Marketplace Purchase type: object @@ -152451,9 +152616,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *745 - previous_marketplace_purchase: *774 - repository: *746 + organization: *747 + previous_marketplace_purchase: *776 + repository: *748 sender: *4 required: - action @@ -152533,12 +152698,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *743 - installation: *744 - marketplace_purchase: *773 - organization: *745 - previous_marketplace_purchase: *774 - repository: *746 + enterprise: *745 + installation: *746 + marketplace_purchase: *775 + organization: *747 + previous_marketplace_purchase: *776 + repository: *748 sender: *4 required: - action @@ -152640,11 +152805,11 @@ x-webhooks: type: string required: - to - enterprise: *743 - installation: *744 - member: *765 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + member: *767 + organization: *747 + repository: *748 sender: *4 required: - action @@ -152744,11 +152909,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *743 - installation: *744 - member: *765 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + member: *767 + organization: *747 + repository: *748 sender: *4 required: - action @@ -152827,11 +152992,11 @@ x-webhooks: type: string enum: - removed - enterprise: *743 - installation: *744 - member: *765 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + member: *767 + organization: *747 + repository: *748 sender: *4 required: - action @@ -152909,11 +153074,11 @@ x-webhooks: type: string enum: - added - enterprise: *743 - installation: *744 - member: *765 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + member: *767 + organization: *747 + repository: *748 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152989,7 +153154,7 @@ x-webhooks: required: - login - id - team: &775 + team: &777 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153212,11 +153377,11 @@ x-webhooks: type: string enum: - removed - enterprise: *743 - installation: *744 - member: *765 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + member: *767 + organization: *747 + repository: *748 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153293,7 +153458,7 @@ x-webhooks: required: - login - id - team: *775 + team: *777 required: - action - scope @@ -153375,8 +153540,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *744 - merge_group: &777 + installation: *746 + merge_group: &779 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -153395,15 +153560,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *776 + head_commit: *778 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -153489,10 +153654,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *744 - merge_group: *777 - organization: *745 - repository: *746 + installation: *746 + merge_group: *779 + organization: *747 + repository: *748 sender: *4 required: - action @@ -153565,7 +153730,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 + enterprise: *745 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -153674,17 +153839,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *744 - organization: *745 + installation: *746 + organization: *747 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: *778 - required: *779 - x-github-breaking-changes: *780 + properties: *780 + required: *781 + x-github-breaking-changes: *782 nullable: true sender: *4 required: @@ -153765,11 +153930,11 @@ x-webhooks: type: string enum: - closed - enterprise: *743 - installation: *744 - milestone: *770 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + milestone: *772 + organization: *747 + repository: *748 sender: *4 required: - action @@ -153848,9 +154013,9 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - milestone: &781 + enterprise: *745 + installation: *746 + milestone: &783 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153987,8 +154152,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154067,11 +154232,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - milestone: *770 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + milestone: *772 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154181,11 +154346,11 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - milestone: *770 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + milestone: *772 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154265,11 +154430,11 @@ x-webhooks: type: string enum: - opened - enterprise: *743 - installation: *744 - milestone: *781 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + milestone: *783 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154348,11 +154513,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *765 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + blocked_user: *767 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154431,11 +154596,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *765 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + blocked_user: *767 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154514,9 +154679,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - membership: &782 + enterprise: *745 + installation: *746 + membership: &784 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -154623,8 +154788,8 @@ x-webhooks: - role - organization_url - user - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154702,11 +154867,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *743 - installation: *744 - membership: *782 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + membership: *784 + organization: *747 + repository: *748 sender: *4 required: - action @@ -154785,8 +154950,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -154902,10 +155067,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 - user: *765 + user: *767 required: - action - invitation @@ -154983,11 +155148,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *743 - installation: *744 - membership: *782 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + membership: *784 + organization: *747 + repository: *748 sender: *4 required: - action @@ -155074,11 +155239,11 @@ x-webhooks: properties: from: type: string - enterprise: *743 - installation: *744 - membership: *782 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + membership: *784 + organization: *747 + repository: *748 sender: *4 required: - action @@ -155155,9 +155320,9 @@ x-webhooks: type: string enum: - published - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 package: description: Information about the package. type: object @@ -155656,7 +155821,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &783 + items: &785 title: Ruby Gems metadata type: object properties: @@ -155751,7 +155916,7 @@ x-webhooks: - owner - package_version - registry - repository: *746 + repository: *748 sender: *4 required: - action @@ -155827,9 +155992,9 @@ x-webhooks: type: string enum: - updated - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 package: description: Information about the package. type: object @@ -156182,7 +156347,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *783 + items: *785 source_url: type: string format: uri @@ -156252,7 +156417,7 @@ x-webhooks: - owner - package_version - registry - repository: *746 + repository: *748 sender: *4 required: - action @@ -156428,12 +156593,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *743 + enterprise: *745 id: type: integer - installation: *744 - organization: *745 - repository: *746 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - id @@ -156510,7 +156675,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &784 + personal_access_token_request: &786 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -156656,10 +156821,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *743 - organization: *745 + enterprise: *745 + organization: *747 sender: *4 - installation: *744 + installation: *746 required: - action - personal_access_token_request @@ -156736,11 +156901,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *784 - enterprise: *743 - organization: *745 + personal_access_token_request: *786 + enterprise: *745 + organization: *747 sender: *4 - installation: *744 + installation: *746 required: - action - personal_access_token_request @@ -156816,11 +156981,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *784 - enterprise: *743 - organization: *745 + personal_access_token_request: *786 + enterprise: *745 + organization: *747 sender: *4 - installation: *744 + installation: *746 required: - action - personal_access_token_request @@ -156895,11 +157060,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *784 - organization: *745 - enterprise: *743 + personal_access_token_request: *786 + organization: *747 + enterprise: *745 sender: *4 - installation: *744 + installation: *746 required: - action - personal_access_token_request @@ -157004,7 +157169,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *785 + last_response: *787 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157036,8 +157201,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 zen: description: Random string of GitHub zen. @@ -157282,10 +157447,10 @@ x-webhooks: - from required: - note - enterprise: *743 - installation: *744 - organization: *745 - project_card: &786 + enterprise: *745 + installation: *746 + organization: *747 + project_card: &788 title: Project Card type: object properties: @@ -157404,7 +157569,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *746 + repository: *748 sender: *4 required: - action @@ -157485,11 +157650,11 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - project_card: *786 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project_card: *788 + repository: *748 sender: *4 required: - action @@ -157569,9 +157734,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 project_card: title: Project Card type: object @@ -157699,9 +157864,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *778 - required: *779 - x-github-breaking-changes: *780 + properties: *780 + required: *781 + x-github-breaking-changes: *782 nullable: true sender: *4 required: @@ -157795,11 +157960,11 @@ x-webhooks: - from required: - note - enterprise: *743 - installation: *744 - organization: *745 - project_card: *786 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project_card: *788 + repository: *748 sender: *4 required: - action @@ -157893,9 +158058,9 @@ x-webhooks: - from required: - column_id - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 project_card: allOf: - title: Project Card @@ -158085,7 +158250,7 @@ x-webhooks: type: string required: - after_id - repository: *746 + repository: *748 sender: *4 required: - action @@ -158165,10 +158330,10 @@ x-webhooks: type: string enum: - closed - enterprise: *743 - installation: *744 - organization: *745 - project: &788 + enterprise: *745 + installation: *746 + organization: *747 + project: &790 title: Project type: object properties: @@ -158292,7 +158457,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *746 + repository: *748 sender: *4 required: - action @@ -158372,10 +158537,10 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - project_column: &787 + enterprise: *745 + installation: *746 + organization: *747 + project_column: &789 title: Project Column type: object properties: @@ -158414,7 +158579,7 @@ x-webhooks: - name - created_at - updated_at - repository: *746 + repository: *748 sender: *4 required: - action @@ -158493,19 +158658,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - project_column: *787 + enterprise: *745 + installation: *746 + organization: *747 + project_column: *789 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: *778 - required: *779 - x-github-breaking-changes: *780 + properties: *780 + required: *781 + x-github-breaking-changes: *782 nullable: true sender: *4 required: @@ -158595,11 +158760,11 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - organization: *745 - project_column: *787 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project_column: *789 + repository: *748 sender: *4 required: - action @@ -158679,11 +158844,11 @@ x-webhooks: type: string enum: - moved - enterprise: *743 - installation: *744 - organization: *745 - project_column: *787 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project_column: *789 + repository: *748 sender: *4 required: - action @@ -158763,11 +158928,11 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - project: *788 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project: *790 + repository: *748 sender: *4 required: - action @@ -158847,19 +159012,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - project: *788 + enterprise: *745 + installation: *746 + organization: *747 + project: *790 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: *778 - required: *779 - x-github-breaking-changes: *780 + properties: *780 + required: *781 + x-github-breaking-changes: *782 nullable: true sender: *4 required: @@ -158961,11 +159126,11 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - organization: *745 - project: *788 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project: *790 + repository: *748 sender: *4 required: - action @@ -159044,11 +159209,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *743 - installation: *744 - organization: *745 - project: *788 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + project: *790 + repository: *748 sender: *4 required: - action @@ -159129,9 +159294,9 @@ x-webhooks: type: string enum: - closed - installation: *744 - organization: *745 - projects_v2: *277 + installation: *746 + organization: *747 + projects_v2: *279 sender: *4 required: - action @@ -159212,9 +159377,9 @@ x-webhooks: type: string enum: - created - installation: *744 - organization: *745 - projects_v2: *277 + installation: *746 + organization: *747 + projects_v2: *279 sender: *4 required: - action @@ -159295,9 +159460,9 @@ x-webhooks: type: string enum: - deleted - installation: *744 - organization: *745 - projects_v2: *277 + installation: *746 + organization: *747 + projects_v2: *279 sender: *4 required: - action @@ -159414,9 +159579,9 @@ x-webhooks: type: string to: type: string - installation: *744 - organization: *745 - projects_v2: *277 + installation: *746 + organization: *747 + projects_v2: *279 sender: *4 required: - action @@ -159499,7 +159664,7 @@ x-webhooks: type: string enum: - archived - changes: &792 + changes: &794 type: object properties: archived_at: @@ -159513,9 +159678,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *744 - organization: *745 - projects_v2_item: &789 + installation: *746 + organization: *747 + projects_v2_item: &791 title: Projects v2 Item description: An item belonging to a project type: object @@ -159533,7 +159698,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *284 + content_type: *286 creator: *4 created_at: type: string @@ -159650,9 +159815,9 @@ x-webhooks: nullable: true to: type: string - installation: *744 - organization: *745 - projects_v2_item: *789 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -159734,9 +159899,9 @@ x-webhooks: type: string enum: - created - installation: *744 - organization: *745 - projects_v2_item: *789 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -159817,9 +159982,9 @@ x-webhooks: type: string enum: - deleted - installation: *744 - organization: *745 - projects_v2_item: *789 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -159925,7 +160090,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &790 + - &792 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -159947,7 +160112,7 @@ x-webhooks: required: - id - name - - &791 + - &793 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -159981,8 +160146,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *790 - - *791 + - *792 + - *793 required: - field_value - type: object @@ -159998,9 +160163,9 @@ x-webhooks: nullable: true required: - body - installation: *744 - organization: *745 - projects_v2_item: *789 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -160095,9 +160260,9 @@ x-webhooks: to: type: string nullable: true - installation: *744 - organization: *745 - projects_v2_item: *789 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -160180,10 +160345,10 @@ x-webhooks: type: string enum: - restored - changes: *792 - installation: *744 - organization: *745 - projects_v2_item: *789 + changes: *794 + installation: *746 + organization: *747 + projects_v2_item: *791 sender: *4 required: - action @@ -160265,9 +160430,9 @@ x-webhooks: type: string enum: - reopened - installation: *744 - organization: *745 - projects_v2: *277 + installation: *746 + organization: *747 + projects_v2: *279 sender: *4 required: - action @@ -160348,14 +160513,14 @@ x-webhooks: type: string enum: - created - installation: *744 - organization: *745 - projects_v2_status_update: &795 + installation: *746 + organization: *747 + projects_v2_status_update: &797 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *793 - required: *794 + properties: *795 + required: *796 sender: *4 required: - action @@ -160436,9 +160601,9 @@ x-webhooks: type: string enum: - deleted - installation: *744 - organization: *745 - projects_v2_status_update: *795 + installation: *746 + organization: *747 + projects_v2_status_update: *797 sender: *4 required: - action @@ -160574,9 +160739,9 @@ x-webhooks: type: string format: date nullable: true - installation: *744 - organization: *745 - projects_v2_status_update: *795 + installation: *746 + organization: *747 + projects_v2_status_update: *797 sender: *4 required: - action @@ -160647,10 +160812,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - repository @@ -160727,13 +160892,13 @@ x-webhooks: type: string enum: - assigned - assignee: *765 - enterprise: *743 - installation: *744 - number: &796 + assignee: *767 + enterprise: *745 + installation: *746 + number: &798 description: The pull request number. type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -163038,7 +163203,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -163135,11 +163300,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -165439,7 +165604,7 @@ x-webhooks: - draft reason: type: string - repository: *746 + repository: *748 sender: *4 required: - action @@ -165536,11 +165701,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -167840,7 +168005,7 @@ x-webhooks: - draft reason: type: string - repository: *746 + repository: *748 sender: *4 required: - action @@ -167937,13 +168102,13 @@ x-webhooks: type: string enum: - closed - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: &797 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: &799 allOf: - - *599 + - *601 - type: object properties: allow_auto_merge: @@ -168005,7 +168170,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *746 + repository: *748 sender: *4 required: - action @@ -168086,12 +168251,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: *797 - repository: *746 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: *799 + repository: *748 sender: *4 required: - action @@ -168171,11 +168336,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *743 - milestone: *583 - number: *796 - organization: *745 - pull_request: &798 + enterprise: *745 + milestone: *585 + number: *798 + organization: *747 + pull_request: &800 title: Pull Request type: object properties: @@ -170502,7 +170667,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *746 + repository: *748 sender: *4 required: - action @@ -170581,11 +170746,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -172889,7 +173054,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *746 + repository: *748 sender: *4 required: - action @@ -173021,12 +173186,12 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: *797 - repository: *746 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: *799 + repository: *748 sender: *4 required: - action @@ -173106,11 +173271,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -175399,7 +175564,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -175487,11 +175652,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *743 - installation: *744 - label: *764 - number: *796 - organization: *745 + enterprise: *745 + installation: *746 + label: *766 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -177795,7 +177960,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -177891,10 +178056,10 @@ x-webhooks: type: string enum: - locked - enterprise: *743 - installation: *744 - number: *796 - organization: *745 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -180196,7 +180361,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -180291,12 +180456,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *743 - milestone: *583 - number: *796 - organization: *745 - pull_request: *798 - repository: *746 + enterprise: *745 + milestone: *585 + number: *798 + organization: *747 + pull_request: *800 + repository: *748 sender: *4 required: - action @@ -180375,12 +180540,12 @@ x-webhooks: type: string enum: - opened - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: *797 - repository: *746 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: *799 + repository: *748 sender: *4 required: - action @@ -180461,12 +180626,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: *797 - repository: *746 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: *799 + repository: *748 sender: *4 required: - action @@ -180546,12 +180711,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *743 - installation: *744 - number: *796 - organization: *745 - pull_request: *797 - repository: *746 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 + pull_request: *799 + repository: *748 sender: *4 required: - action @@ -180917,9 +181082,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: type: object properties: @@ -183111,7 +183276,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *746 + repository: *748 sender: *4 required: - action @@ -183206,7 +183371,7 @@ x-webhooks: type: string enum: - deleted - comment: &800 + comment: &802 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -183491,9 +183656,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: type: object properties: @@ -185673,7 +185838,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *746 + repository: *748 sender: *4 required: - action @@ -185768,11 +185933,11 @@ x-webhooks: type: string enum: - edited - changes: *799 - comment: *800 - enterprise: *743 - installation: *744 - organization: *745 + changes: *801 + comment: *802 + enterprise: *745 + installation: *746 + organization: *747 pull_request: type: object properties: @@ -187955,7 +188120,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *746 + repository: *748 sender: *4 required: - action @@ -188051,9 +188216,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: title: Simple Pull Request type: object @@ -190248,7 +190413,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *746 + repository: *748 review: description: The review that was affected. type: object @@ -190510,9 +190675,9 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: title: Simple Pull Request type: object @@ -192566,8 +192731,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *746 - review: &801 + repository: *748 + review: &803 description: The review that was affected. type: object properties: @@ -192808,12 +192973,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: description: The pull request number. type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -195118,7 +195283,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 requested_reviewer: title: User type: object @@ -195202,12 +195367,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: description: The pull request number. type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -197519,7 +197684,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 requested_team: title: Team description: Groups of organization members that gives permissions @@ -197734,12 +197899,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: description: The pull request number. type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -200046,7 +200211,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 requested_reviewer: title: User type: object @@ -200131,12 +200296,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *743 - installation: *744 + enterprise: *745 + installation: *746 number: description: The pull request number. type: integer - organization: *745 + organization: *747 pull_request: title: Pull Request type: object @@ -202434,7 +202599,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202638,9 +202803,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: title: Simple Pull Request type: object @@ -204837,8 +205002,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *746 - review: *801 + repository: *748 + review: *803 sender: *4 required: - action @@ -204933,9 +205098,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: title: Simple Pull Request type: object @@ -207027,7 +207192,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *746 + repository: *748 sender: *4 thread: type: object @@ -207422,9 +207587,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 pull_request: title: Simple Pull Request type: object @@ -209502,7 +209667,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *746 + repository: *748 sender: *4 thread: type: object @@ -209900,10 +210065,10 @@ x-webhooks: type: string before: type: string - enterprise: *743 - installation: *744 - number: *796 - organization: *745 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -212196,7 +212361,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -212293,11 +212458,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *802 - enterprise: *743 - installation: *744 - number: *796 - organization: *745 + assignee: *804 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -214602,7 +214767,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -214696,11 +214861,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *743 - installation: *744 - label: *764 - number: *796 - organization: *745 + enterprise: *745 + installation: *746 + label: *766 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -216995,7 +217160,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -217091,10 +217256,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *743 - installation: *744 - number: *796 - organization: *745 + enterprise: *745 + installation: *746 + number: *798 + organization: *747 pull_request: title: Pull Request type: object @@ -219381,7 +219546,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *746 + repository: *748 sender: *4 required: - action @@ -219596,7 +219761,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *743 + enterprise: *745 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -219688,8 +219853,8 @@ x-webhooks: - url - author - committer - installation: *744 - organization: *745 + installation: *746 + organization: *747 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -220275,9 +220440,9 @@ x-webhooks: type: string enum: - published - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 registry_package: type: object properties: @@ -220723,7 +220888,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *783 + items: *785 summary: type: string tag_name: @@ -220777,7 +220942,7 @@ x-webhooks: - owner - package_version - registry - repository: *746 + repository: *748 sender: *4 required: - action @@ -220855,9 +221020,9 @@ x-webhooks: type: string enum: - updated - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 registry_package: type: object properties: @@ -221165,7 +221330,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *783 + items: *785 summary: type: string tag_name: @@ -221214,7 +221379,7 @@ x-webhooks: - owner - package_version - registry - repository: *746 + repository: *748 sender: *4 required: - action @@ -221291,10 +221456,10 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - release: &803 + enterprise: *745 + installation: *746 + organization: *747 + release: &805 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221612,7 +221777,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *746 + repository: *748 sender: *4 required: - action @@ -221689,11 +221854,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - release: *803 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + release: *805 + repository: *748 sender: *4 required: - action @@ -221810,11 +221975,11 @@ x-webhooks: type: boolean required: - to - enterprise: *743 - installation: *744 - organization: *745 - release: *803 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + release: *805 + repository: *748 sender: *4 required: - action @@ -221892,9 +222057,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -222216,7 +222381,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *746 + repository: *748 sender: *4 required: - action @@ -222292,10 +222457,10 @@ x-webhooks: type: string enum: - published - enterprise: *743 - installation: *744 - organization: *745 - release: &804 + enterprise: *745 + installation: *746 + organization: *747 + release: &806 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222614,7 +222779,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *746 + repository: *748 sender: *4 required: - action @@ -222690,11 +222855,11 @@ x-webhooks: type: string enum: - released - enterprise: *743 - installation: *744 - organization: *745 - release: *803 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + release: *805 + repository: *748 sender: *4 required: - action @@ -222770,11 +222935,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *743 - installation: *744 - organization: *745 - release: *804 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + release: *806 + repository: *748 sender: *4 required: - action @@ -222850,11 +223015,11 @@ x-webhooks: type: string enum: - published - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - repository_advisory: *666 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + repository_advisory: *668 sender: *4 required: - action @@ -222930,11 +223095,11 @@ x-webhooks: type: string enum: - reported - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - repository_advisory: *666 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + repository_advisory: *668 sender: *4 required: - action @@ -223010,10 +223175,10 @@ x-webhooks: type: string enum: - archived - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223090,10 +223255,10 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223171,10 +223336,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223258,10 +223423,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223373,10 +223538,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223448,10 +223613,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 status: type: string @@ -223532,10 +223697,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223612,10 +223777,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223709,10 +223874,10 @@ x-webhooks: - name required: - repository - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -223792,11 +223957,11 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - repository_ruleset: *326 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + repository_ruleset: *328 sender: *4 required: - action @@ -223874,11 +224039,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - repository_ruleset: *326 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + repository_ruleset: *328 sender: *4 required: - action @@ -223956,11 +224121,11 @@ x-webhooks: type: string enum: - edited - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - repository_ruleset: *326 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + repository_ruleset: *328 changes: type: object properties: @@ -223979,16 +224144,16 @@ x-webhooks: properties: added: type: array - items: *300 + items: *302 deleted: type: array - items: *300 + items: *302 updated: type: array items: type: object properties: - condition: *300 + condition: *302 changes: type: object properties: @@ -224021,16 +224186,16 @@ x-webhooks: properties: added: type: array - items: *619 + items: *621 deleted: type: array - items: *619 + items: *621 updated: type: array items: type: object properties: - rule: *619 + rule: *621 changes: type: object properties: @@ -224264,10 +224429,10 @@ x-webhooks: - from required: - owner - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -224345,10 +224510,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -224426,7 +224591,7 @@ x-webhooks: type: string enum: - create - alert: &805 + alert: &807 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224548,10 +224713,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -224757,10 +224922,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -224838,11 +225003,11 @@ x-webhooks: type: string enum: - reopen - alert: *805 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *807 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225041,10 +225206,10 @@ x-webhooks: enum: - fixed - open - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225122,11 +225287,11 @@ x-webhooks: type: string enum: - assigned - alert: &806 + alert: &808 type: object properties: - number: *177 - created_at: *178 + number: *179 + created_at: *180 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -225134,8 +225299,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *180 - html_url: *181 + url: *182 + html_url: *183 locations_url: type: string format: uri @@ -225265,10 +225430,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225346,11 +225511,11 @@ x-webhooks: type: string enum: - created - alert: *806 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225431,11 +225596,11 @@ x-webhooks: type: string enum: - created - alert: *806 - installation: *744 - location: *807 - organization: *745 - repository: *746 + alert: *808 + installation: *746 + location: *809 + organization: *747 + repository: *748 sender: *4 required: - location @@ -225673,11 +225838,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *806 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225755,11 +225920,11 @@ x-webhooks: type: string enum: - reopened - alert: *806 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225837,11 +226002,11 @@ x-webhooks: type: string enum: - resolved - alert: *806 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -225919,12 +226084,12 @@ x-webhooks: type: string enum: - unassigned - alert: *806 + alert: *808 assignee: *4 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -226002,11 +226167,11 @@ x-webhooks: type: string enum: - validated - alert: *806 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + alert: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -226132,10 +226297,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *746 - enterprise: *743 - installation: *744 - organization: *745 + repository: *748 + enterprise: *745 + installation: *746 + organization: *747 sender: *4 required: - action @@ -226213,11 +226378,11 @@ x-webhooks: type: string enum: - published - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - security_advisory: &808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + security_advisory: &810 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226418,11 +226583,11 @@ x-webhooks: type: string enum: - updated - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 - security_advisory: *808 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 + security_advisory: *810 sender: *4 required: - action @@ -226495,10 +226660,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226690,11 +226855,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *299 - enterprise: *743 - installation: *744 - organization: *745 - repository: *347 + security_and_analysis: *301 + enterprise: *745 + installation: *746 + organization: *747 + repository: *349 sender: *4 required: - changes @@ -226772,12 +226937,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: &809 + sponsorship: &811 type: object properties: created_at: @@ -227078,12 +227243,12 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: *809 + sponsorship: *811 required: - action - sponsorship @@ -227171,12 +227336,12 @@ x-webhooks: type: string required: - from - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: *809 + sponsorship: *811 required: - action - changes @@ -227253,17 +227418,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &810 + effective_date: &812 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: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: *809 + sponsorship: *811 required: - action - sponsorship @@ -227337,7 +227502,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &811 + changes: &813 type: object properties: tier: @@ -227381,13 +227546,13 @@ x-webhooks: - from required: - tier - effective_date: *810 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + effective_date: *812 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: *809 + sponsorship: *811 required: - action - changes @@ -227464,13 +227629,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *811 - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + changes: *813 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - sponsorship: *809 + sponsorship: *811 required: - action - changes @@ -227544,10 +227709,10 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227630,10 +227795,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228053,15 +228218,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *743 + enterprise: *745 id: description: The unique identifier of the status. type: integer - installation: *744 + installation: *746 name: type: string - organization: *745 - repository: *746 + organization: *747 + repository: *748 sender: *4 sha: description: The Commit SHA. @@ -228170,15 +228335,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *744 - organization: *745 - repository: *746 + sub_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -228262,15 +228427,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - parent_issue_repo: *80 + parent_issue: *88 + parent_issue_repo: *82 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - installation: *744 - organization: *745 - repository: *746 + sub_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -228354,15 +228519,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *744 - organization: *745 - repository: *746 + parent_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -228446,15 +228611,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *86 - sub_issue_repo: *80 + sub_issue: *88 + sub_issue_repo: *82 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *86 - installation: *744 - organization: *745 - repository: *746 + parent_issue: *88 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -228531,12 +228696,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - team: &812 + team: &814 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228759,9 +228924,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 repository: title: Repository description: A git repository @@ -229219,7 +229384,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *812 + team: *814 required: - action - team @@ -229295,9 +229460,9 @@ x-webhooks: type: string enum: - created - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 repository: title: Repository description: A git repository @@ -229755,7 +229920,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *812 + team: *814 required: - action - team @@ -229832,9 +229997,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 repository: title: Repository description: A git repository @@ -230292,7 +230457,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *812 + team: *814 required: - action - team @@ -230436,9 +230601,9 @@ x-webhooks: - from required: - permissions - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 repository: title: Repository description: A git repository @@ -230896,7 +231061,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *812 + team: *814 required: - action - changes @@ -230974,9 +231139,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *743 - installation: *744 - organization: *745 + enterprise: *745 + installation: *746 + organization: *747 repository: title: Repository description: A git repository @@ -231434,7 +231599,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *812 + team: *814 required: - action - team @@ -231510,10 +231675,10 @@ x-webhooks: type: string enum: - started - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 required: - action @@ -231586,16 +231751,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *743 + enterprise: *745 inputs: type: object nullable: true additionalProperties: true - installation: *744 - organization: *745 + installation: *746 + organization: *747 ref: type: string - repository: *746 + repository: *748 sender: *4 workflow: type: string @@ -231677,10 +231842,10 @@ x-webhooks: type: string enum: - completed - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 workflow_job: allOf: @@ -231917,7 +232082,7 @@ x-webhooks: type: string required: - conclusion - deployment: *508 + deployment: *510 required: - action - repository @@ -231996,10 +232161,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 workflow_job: allOf: @@ -232259,7 +232424,7 @@ x-webhooks: required: - status - steps - deployment: *508 + deployment: *510 required: - action - repository @@ -232338,10 +232503,10 @@ x-webhooks: type: string enum: - queued - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 workflow_job: type: object @@ -232476,7 +232641,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *508 + deployment: *510 required: - action - repository @@ -232555,10 +232720,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 workflow_job: type: object @@ -232694,7 +232859,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *508 + deployment: *510 required: - action - repository @@ -232774,12 +232939,12 @@ x-webhooks: type: string enum: - completed - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - workflow: *760 + workflow: *762 workflow_run: title: Workflow Run type: object @@ -233778,12 +233943,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - workflow: *760 + workflow: *762 workflow_run: title: Workflow Run type: object @@ -234767,12 +234932,12 @@ x-webhooks: type: string enum: - requested - enterprise: *743 - installation: *744 - organization: *745 - repository: *746 + enterprise: *745 + installation: *746 + organization: *747 + repository: *748 sender: *4 - workflow: *760 + workflow: *762 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 2be9dc832c..62319eb646 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -47785,6 +47785,905 @@ } } }, + "/enterprises/{enterprise}/dependabot/repository-access": { + "get": { + "summary": "Lists the repositories Dependabot can access in an enterprise", + "description": "Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", + "in": "query", + "description": "The page number of results to fetch.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "name": "per_page", + "in": "query", + "description": "Number of results per page.", + "required": false, + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 30 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Dependabot Repository Access Details", + "description": "Information about repositories that Dependabot is able to access in an organization", + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal", + "nullable": true + }, + "accessible_repositories": { + "type": "array", + "items": { + "title": "Simple Repository", + "description": "A GitHub repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "example": 1296269, + "description": "A unique identifier of the repository." + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "description": "The GraphQL identifier of the repository." + }, + "name": { + "type": "string", + "example": "Hello-World", + "description": "The name of the repository." + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World", + "description": "The full, globally unique, name of the repository." + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + "private": { + "type": "boolean", + "description": "Whether the repository is private." + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World", + "description": "The URL to view the repository on GitHub.com." + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true, + "description": "The repository description." + }, + "fork": { + "type": "boolean", + "description": "Whether the repository is a fork." + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World", + "description": "The URL to get more information about the repository from the GitHub API." + }, + "archive_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "description": "A template for the API URL to download the repository as an archive." + }, + "assignees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "description": "A template for the API URL to list the available assignees for issues in the repository." + }, + "blobs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git blob in the repository." + }, + "branches_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "description": "A template for the API URL to get information about branches in the repository." + }, + "collaborators_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "description": "A template for the API URL to get information about collaborators of the repository." + }, + "comments_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "description": "A template for the API URL to get information about comments on the repository." + }, + "commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "description": "A template for the API URL to get information about commits on the repository." + }, + "compare_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "description": "A template for the API URL to compare two commits or refs." + }, + "contents_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "description": "A template for the API URL to get the contents of the repository." + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/contributors", + "description": "A template for the API URL to list the contributors to the repository." + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/deployments", + "description": "The API URL to list the deployments of the repository." + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/downloads", + "description": "The API URL to list the downloads on the repository." + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/events", + "description": "The API URL to list the events of the repository." + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/forks", + "description": "The API URL to list the forks of the repository." + }, + "git_commits_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "description": "A template for the API URL to get information about Git commits of the repository." + }, + "git_refs_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "description": "A template for the API URL to get information about Git refs of the repository." + }, + "git_tags_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "A template for the API URL to get information about Git tags of the repository." + }, + "issue_comment_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "description": "A template for the API URL to get information about issue comments on the repository." + }, + "issue_events_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "description": "A template for the API URL to get information about issue events on the repository." + }, + "issues_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "description": "A template for the API URL to get information about issues on the repository." + }, + "keys_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "description": "A template for the API URL to get information about deploy keys on the repository." + }, + "labels_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "description": "A template for the API URL to get information about labels of the repository." + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/languages", + "description": "The API URL to get information about the languages of the repository." + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/merges", + "description": "The API URL to merge branches in the repository." + }, + "milestones_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "description": "A template for the API URL to get information about milestones of the repository." + }, + "notifications_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "description": "A template for the API URL to get information about notifications on the repository." + }, + "pulls_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "description": "A template for the API URL to get information about pull requests on the repository." + }, + "releases_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "description": "A template for the API URL to get information about releases on the repository." + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "description": "The API URL to list the stargazers on the repository." + }, + "statuses_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "description": "A template for the API URL to get information about statuses of a commit." + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "description": "The API URL to list the subscribers on the repository." + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/subscription", + "description": "The API URL to subscribe to notifications for this repository." + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/tags", + "description": "The API URL to get information about tags on the repository." + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/teams", + "description": "The API URL to list the teams on the repository." + }, + "trees_url": { + "type": "string", + "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "description": "A template for the API URL to create or retrieve a raw Git tree of the repository." + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/hooks", + "description": "The API URL to list the hooks on the repository." + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url" + ], + "nullable": true + } + } + }, + "additionalProperties": false + }, + "examples": { + "default": { + "value": { + "default_level": "public", + "accessible_repositories": [ + { + "id": 123456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0NTY=", + "name": "example-repo", + "full_name": "octocat/example-repo", + "owner": { + "name": "octocat", + "email": "octo@github.com", + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1?v=4", + "gravatar_id": 1, + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat/example-repo", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "starred_at": "\"2020-07-09T00:17:55Z\"", + "user_view_type": "default" + }, + "private": false, + "html_url": "https://github.com/octocat/example-repo", + "description": "This is an example repository.", + "fork": false, + "url": "https://api.github.com/repos/octocat/example-repo", + "archive_url": "https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/example-repo/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/example-repo/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/example-repo/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/example-repo/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/example-repo/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/example-repo/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/example-repo/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/example-repo/contributors", + "deployments_url": "https://api.github.com/repos/octocat/example-repo/deployments", + "downloads_url": "https://api.github.com/repos/octocat/example-repo/downloads", + "events_url": "https://api.github.com/repos/octocat/example-repo/events", + "forks_url": "https://api.github.com/repos/octocat/example-repo/forks", + "git_commits_url": "https://api.github.com/repos/octocat/example-repo/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/example-repo/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/example-repo/git/tags{/sha}", + "issue_comment_url": "https://api.github.com/repos/octocat/example-repo/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/example-repo/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/example-repo/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/example-repo/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/example-repo/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/example-repo/languages", + "merges_url": "https://api.github.com/repos/octocat/example-repo/merges", + "milestones_url": "https://api.github.com/repos/octocat/example-repo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/example-repo/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/example-repo/releases{/id}", + "stargazers_url": "https://api.github.com/repos/octocat/example-repo/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/example-repo/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/example-repo/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/example-repo/subscription", + "tags_url": "https://api.github.com/repos/octocat/example-repo/tags", + "teams_url": "https://api.github.com/repos/octocat/example-repo/teams", + "trees_url": "https://api.github.com/repos/octocat/example-repo/git/trees{/sha}", + "hooks_url": "https://api.github.com/repos/octocat/example-repo/hooks" + } + ] + } + } + } + } + } + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + }, + "patch": { + "summary": "Updates Dependabot's repository access list for an enterprise", + "description": "Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise.\n\nThe authenticated user must be an enterprise owner to use this endpoint.\n\n**Example request body:**\n```json\n{\n \"repository_ids_to_add\": [123, 456],\n \"repository_ids_to_remove\": [789]\n}\n```", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/update-repository-access-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-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": { + "type": "object", + "properties": { + "repository_ids_to_add": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to add." + }, + "repository_ids_to_remove": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "List of repository IDs to remove." + } + }, + "example": { + "repository_ids_to_add": [ + 123, + 456 + ], + "repository_ids_to_remove": [ + 789 + ] + } + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status." + }, + "add-example": { + "summary": "Add repositories", + "value": { + "repository_ids_to_add": [ + 123, + 456 + ] + } + }, + "remove-example": { + "summary": "Remove repositories", + "value": { + "repository_ids_to_remove": [ + 789 + ] + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, + "/enterprises/{enterprise}/dependabot/repository-access/default-level": { + "put": { + "summary": "Set the default repository access level for Dependabot in an enterprise", + "description": "Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are:\n- 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories.\n- 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories.\n\nThe authenticated user must be an enterprise owner to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/set-repository-access-default-level-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-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": { + "type": "object", + "properties": { + "default_level": { + "type": "string", + "description": "The default repository access level for Dependabot updates.", + "enum": [ + "public", + "internal" + ], + "example": "internal" + } + }, + "required": [ + "default_level" + ] + }, + "examples": { + "204": { + "summary": "Example with a 'succeeded' status.", + "value": { + "default_level": "public" + } + } + } + } + } + }, + "responses": { + "204": { + "description": "Response" + }, + "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": "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": false, + "category": "dependabot", + "subcategory": "repository-access" + } + } + }, "/enterprises/{enterprise}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an enterprise", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index d0a74ad713..c4fb6fe005 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -865,7 +865,7 @@ paths: - subscriptions_url - type - url - type: &461 + type: &463 type: string description: The type of credit the user is receiving. enum: @@ -998,7 +998,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &264 + schema: &266 title: Validation Error Simple description: Validation Error Simple type: object @@ -1031,7 +1031,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &778 + - &780 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1149,7 +1149,7 @@ paths: GitHub. type: object nullable: true - properties: &222 + properties: &224 id: description: Unique identifier of the GitHub app example: 37 @@ -1171,7 +1171,7 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: &142 + properties: &144 description: description: A short description of the enterprise. type: string @@ -1213,7 +1213,7 @@ paths: avatar_url: type: string format: uri - required: &143 + required: &145 - id - node_id - name @@ -1282,7 +1282,7 @@ paths: about itself. example: 5 type: integer - required: &223 + required: &225 - id - node_id - owner @@ -1587,7 +1587,7 @@ paths: schema: type: integer default: 30 - - &361 + - &363 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 @@ -1596,7 +1596,7 @@ paths: required: false schema: type: string - - &362 + - &364 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -1616,7 +1616,7 @@ paths: application/json: schema: type: array - items: &363 + items: &365 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1696,7 +1696,7 @@ paths: - installation_id - repository_id examples: - default: &364 + default: &366 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1728,7 +1728,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &787 + schema: &789 title: Scim Error description: Scim Error type: object @@ -1755,7 +1755,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &263 + schema: &265 title: Validation Error description: Validation Error type: object @@ -1824,7 +1824,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &367 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1938,7 +1938,7 @@ paths: - request - response examples: - default: &366 + default: &368 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2139,7 +2139,7 @@ paths: parameters: - *17 - *19 - - &234 + - &236 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) @@ -2934,7 +2934,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &435 + properties: &437 id: description: Unique identifier of the repository example: 42 @@ -2954,7 +2954,7 @@ paths: title: License Simple description: License Simple type: object - properties: &230 + properties: &232 key: type: string example: mit @@ -2976,7 +2976,7 @@ paths: html_url: type: string format: uri - required: &231 + required: &233 - key - name - url @@ -3385,7 +3385,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &436 + required: &438 - archive_url - assignees_url - blobs_url @@ -7701,7 +7701,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &267 type: object properties: total_active_caches_count: @@ -7716,7 +7716,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &266 + default: &268 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7909,7 +7909,7 @@ paths: - public_ip_enabled - platform examples: - default: &267 + default: &269 value: total_count: 2 runners: @@ -8204,7 +8204,7 @@ paths: application/json: schema: *49 examples: - default: &268 + default: &270 value: id: 1 platform: linux-x64 @@ -8344,7 +8344,7 @@ paths: application/json: schema: *52 examples: - default: &269 + default: &271 value: version: 1.0.0 size_gb: 75 @@ -8508,7 +8508,7 @@ paths: description: Response content: application/json: - schema: &270 + schema: &272 type: object properties: public_ips: @@ -8533,7 +8533,7 @@ paths: required: - public_ips examples: - default: &271 + default: &273 value: public_ips: current_usage: 17 @@ -8573,7 +8573,7 @@ paths: type: array items: *56 examples: - default: &272 + default: &274 value: id: 4-core cpu_cores: 4 @@ -8888,7 +8888,7 @@ paths: required: true content: application/json: - schema: &273 + schema: &275 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -8999,7 +8999,7 @@ paths: - all - local_only - selected - selected_actions_url: &275 + selected_actions_url: &277 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` @@ -9079,7 +9079,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &277 + schema: &279 type: object properties: days: @@ -9097,7 +9097,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &788 + '401': &790 description: Authorization failure '404': *6 x-github: @@ -9125,7 +9125,7 @@ paths: required: true content: application/json: - schema: &278 + schema: &280 type: object properties: days: @@ -9174,7 +9174,7 @@ paths: required: - approval_policy examples: - default: &279 + default: &281 value: approval_policy: first_time_contributors '404': *6 @@ -9232,7 +9232,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &282 type: object required: - run_workflows_from_fork_pull_requests @@ -9286,7 +9286,7 @@ paths: required: true content: application/json: - schema: &281 + schema: &283 type: object required: - run_workflows_from_fork_pull_requests @@ -9709,7 +9709,7 @@ paths: description: Success response content: application/json: - schema: &284 + schema: &286 type: object properties: default_workflow_permissions: &69 @@ -9757,7 +9757,7 @@ paths: required: true content: application/json: - schema: &285 + schema: &287 type: object properties: default_workflow_permissions: *69 @@ -10593,7 +10593,7 @@ paths: application/json: schema: type: array - items: &289 + items: &291 title: Runner Application description: Runner Application type: object @@ -10618,7 +10618,7 @@ paths: - download_url - filename examples: - default: &290 + default: &292 value: - os: osx architecture: x64 @@ -10702,7 +10702,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &291 + '201': &293 description: Response content: application/json: @@ -10817,7 +10817,7 @@ paths: - token - expires_at examples: - default: &292 + default: &294 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10857,7 +10857,7 @@ paths: application/json: schema: *81 examples: - default: &293 + default: &295 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10889,7 +10889,7 @@ paths: application/json: schema: *78 examples: - default: &294 + default: &296 value: id: 23 name: MBP @@ -11105,7 +11105,7 @@ paths: - *41 - *77 responses: - '200': &295 + '200': &297 description: Response content: application/json: @@ -11161,7 +11161,7 @@ paths: parameters: - *41 - *77 - - &296 + - &298 name: name description: The name of a self-hosted runner's custom label. in: path @@ -11252,7 +11252,7 @@ paths: required: true content: application/json: - schema: &303 + schema: &305 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -11893,7 +11893,7 @@ paths: required: false schema: type: string - - &306 + - &308 name: include description: |- The event types to include: @@ -11911,7 +11911,7 @@ paths: - web - git - all - - &307 + - &309 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -11919,7 +11919,7 @@ paths: required: false schema: type: string - - &308 + - &310 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -11927,7 +11927,7 @@ paths: required: false schema: type: string - - &309 + - &311 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11949,7 +11949,7 @@ paths: application/json: schema: type: array - items: &310 + items: &312 type: object properties: "@timestamp": @@ -12071,7 +12071,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &311 + default: &313 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12737,7 +12737,7 @@ paths: application/json: schema: type: array - items: &312 + items: &314 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12898,7 +12898,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &313 + default: &315 value: - id: 21 number: 42 @@ -13003,7 +13003,7 @@ paths: application/json: schema: type: array - items: &315 + items: &317 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -13128,7 +13128,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &316 + default: &318 value: - id: 21 number: 42 @@ -13213,7 +13213,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &321 + - &323 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`, @@ -13223,7 +13223,7 @@ paths: schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &322 + - &324 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 @@ -13246,7 +13246,7 @@ paths: be returned. in: query required: false - schema: &323 + schema: &325 type: string description: State of a code scanning alert. enum: @@ -13279,7 +13279,7 @@ paths: application/json: schema: type: array - items: &324 + items: &326 type: object properties: number: &131 @@ -13308,7 +13308,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &552 + instances_url: &554 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13343,7 +13343,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &553 + dismissed_reason: &555 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -13352,13 +13352,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &554 + dismissed_comment: &556 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &555 + rule: &557 type: object properties: id: @@ -13411,7 +13411,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &556 + tool: &558 type: object properties: name: *113 @@ -13421,26 +13421,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *114 - most_recent_instance: &557 + most_recent_instance: &559 type: object properties: - ref: &550 + ref: &552 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &567 + analysis_key: &569 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: &568 + environment: &570 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: &569 + category: &571 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13460,7 +13460,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &570 + location: &572 type: object description: Describe a region within a file for the alert. properties: @@ -13481,7 +13481,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: &571 + items: &573 type: string description: A classification of the file. For example to identify it as generated. @@ -13495,7 +13495,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &349 + properties: &142 id: type: integer format: int64 @@ -13722,7 +13722,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: &350 + required: &143 - archive_url - assignees_url - blobs_url @@ -13794,7 +13794,7 @@ paths: - most_recent_instance - repository examples: - default: &325 + default: &327 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14025,7 +14025,7 @@ paths: headers: Link: *47 '404': *6 - '503': &198 + '503': &200 description: Service unavailable content: application/json: @@ -14677,7 +14677,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &329 type: array description: A list of default code security configurations items: @@ -14693,7 +14693,7 @@ paths: default configuration: *116 examples: - default: &328 + default: &330 value: - default_for_new_repos: public configuration: @@ -15151,7 +15151,7 @@ paths: default: value: default_for_new_repos: all - configuration: &326 + configuration: &328 value: id: 1325 target_type: organization @@ -15241,7 +15241,7 @@ paths: application/json: schema: type: array - items: &329 + items: &331 type: object description: Repositories associated with a code security configuration and attachment status @@ -15265,7 +15265,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &330 + repository: &332 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15730,7 +15730,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &149 + items: &151 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -15754,7 +15754,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &317 + - &319 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15829,7 +15829,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &401 + properties: &403 id: description: Unique identifier of the team type: integer @@ -15901,7 +15901,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &402 + required: &404 - id - node_id - url @@ -15927,7 +15927,7 @@ paths: - slug - parent - type - - &148 + - &150 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -16037,7 +16037,7 @@ paths: - created_at additionalProperties: false examples: - default: &150 + default: &152 value: total_seats: 2 seats: @@ -16574,7 +16574,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &333 + '413': &335 description: Payload Too Large content: application/json: @@ -16996,7 +16996,7 @@ paths: application/json: schema: type: array - items: &211 + items: &213 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -17303,7 +17303,7 @@ paths: - date additionalProperties: true examples: - default: &212 + default: &214 value: - date: '2024-06-24' total_active_users: 24 @@ -17405,7 +17405,7 @@ paths: '500': *40 '403': *29 '404': *6 - '422': &213 + '422': &215 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -17846,7 +17846,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &338 + - &340 name: classification in: query description: |- @@ -17855,7 +17855,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &339 + - &341 name: state in: query description: |- @@ -17864,7 +17864,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &340 + - &342 name: severity in: query description: |- @@ -17873,7 +17873,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &341 + - &343 name: ecosystem in: query description: |- @@ -17882,14 +17882,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &342 + - &344 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 - - &343 + - &345 name: epss_percentage in: query description: |- @@ -17901,7 +17901,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 - - &614 + - &616 name: has in: query description: |- @@ -17915,7 +17915,7 @@ paths: type: string enum: - patch - - &344 + - &346 name: assignee in: query description: |- @@ -17924,7 +17924,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &345 + - &347 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -17934,7 +17934,7 @@ paths: enum: - development - runtime - - &346 + - &348 name: sort in: query description: |- @@ -17960,7 +17960,7 @@ paths: application/json: schema: type: array - items: &347 + items: &349 type: object description: A Dependabot alert. properties: @@ -18024,7 +18024,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &615 + security_advisory: &617 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -18263,14 +18263,14 @@ paths: nullable: true maxLength: 280 fixed_at: *141 - auto_dismissed_at: &616 + auto_dismissed_at: &618 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: &617 + dismissal_request: &619 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -18332,7 +18332,7 @@ paths: - repository additionalProperties: false examples: - default: &348 + default: &350 value: - number: 2 state: dismissed @@ -18680,6 +18680,266 @@ paths: previews: [] category: dependabot subcategory: alerts + "/enterprises/{enterprise}/dependabot/repository-access": + get: + summary: Lists the repositories Dependabot can access in an enterprise + description: |- + Lists repositories that enterprise admins have allowed Dependabot to access when updating dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-enterprise + parameters: + - *41 + - name: page + in: query + description: The page number of results to fetch. + required: false + schema: + type: integer + minimum: 1 + default: 1 + - name: per_page + in: query + description: Number of results per page. + required: false + schema: + type: integer + minimum: 1 + maximum: 100 + default: 30 + responses: + '200': + description: Response + content: + application/json: + schema: &351 + title: Dependabot Repository Access Details + description: Information about repositories that Dependabot is able + to access in an organization + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + nullable: true + accessible_repositories: + type: array + items: + title: Simple Repository + description: A GitHub repository. + type: object + properties: *142 + required: *143 + nullable: true + additionalProperties: false + examples: + default: &352 + value: + default_level: public + accessible_repositories: + - id: 123456 + node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= + name: example-repo + full_name: octocat/example-repo + owner: + name: octocat + email: octo@github.com + login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://avatars.githubusercontent.com/u/1?v=4 + gravatar_id: 1 + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat/example-repo + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + starred_at: '"2020-07-09T00:17:55Z"' + user_view_type: default + private: false + html_url: https://github.com/octocat/example-repo + description: This is an example repository. + fork: false + url: https://api.github.com/repos/octocat/example-repo + archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} + assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} + blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} + branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} + collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} + comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} + commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} + compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} + contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} + contributors_url: https://api.github.com/repos/octocat/example-repo/contributors + deployments_url: https://api.github.com/repos/octocat/example-repo/deployments + downloads_url: https://api.github.com/repos/octocat/example-repo/downloads + events_url: https://api.github.com/repos/octocat/example-repo/events + forks_url: https://api.github.com/repos/octocat/example-repo/forks + git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} + git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} + git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} + issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} + issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} + issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} + keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} + labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} + languages_url: https://api.github.com/repos/octocat/example-repo/languages + merges_url: https://api.github.com/repos/octocat/example-repo/merges + milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} + notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} + pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} + releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} + stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers + statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} + subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers + subscription_url: https://api.github.com/repos/octocat/example-repo/subscription + tags_url: https://api.github.com/repos/octocat/example-repo/tags + teams_url: https://api.github.com/repos/octocat/example-repo/teams + trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} + hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + patch: + summary: Updates Dependabot's repository access list for an enterprise + description: |- + Updates repositories according to the list of repositories that enterprise admins have given Dependabot access to when they've updated dependencies across organizations in the enterprise. + + The authenticated user must be an enterprise owner to use this endpoint. + + **Example request body:** + ```json + { + "repository_ids_to_add": [123, 456], + "repository_ids_to_remove": [789] + } + ``` + tags: + - dependabot + operationId: dependabot/update-repository-access-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-enterprise + parameters: + - *41 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + repository_ids_to_add: + type: array + items: + type: integer + description: List of repository IDs to add. + repository_ids_to_remove: + type: array + items: + type: integer + description: List of repository IDs to remove. + example: + repository_ids_to_add: + - 123 + - 456 + repository_ids_to_remove: + - 789 + examples: + '204': + summary: Example with a 'succeeded' status. + add-example: + summary: Add repositories + value: + repository_ids_to_add: + - 123 + - 456 + remove-example: + summary: Remove repositories + value: + repository_ids_to_remove: + - 789 + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access + "/enterprises/{enterprise}/dependabot/repository-access/default-level": + put: + summary: Set the default repository access level for Dependabot in an enterprise + description: |- + Sets the default level of repository access Dependabot will have while performing an update across organizations in the enterprise. Available values are: + - 'public' - Dependabot will only have access to public repositories, unless access is explicitly granted to non-public repositories. + - 'internal' - Dependabot will only have access to public and internal repositories, unless access is explicitly granted to private repositories. + + The authenticated user must be an enterprise owner to use this endpoint. + tags: + - dependabot + operationId: dependabot/set-repository-access-default-level-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot-in-an-enterprise + parameters: + - *41 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + default_level: + type: string + description: The default repository access level for Dependabot + updates. + enum: + - public + - internal + example: internal + required: + - default_level + examples: + '204': + summary: Example with a 'succeeded' status. + value: + default_level: public + responses: + '204': + description: Response + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: false + category: dependabot + subcategory: repository-access "/enterprises/{enterprise}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an enterprise @@ -18705,7 +18965,7 @@ paths: - *105 - *106 - *107 - - &352 + - &354 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -18731,7 +18991,7 @@ paths: application/json: schema: type: array - items: &354 + items: &356 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -18852,7 +19112,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &355 + default: &357 value: - id: 21 number: 42 @@ -18953,7 +19213,7 @@ paths: roles: type: array description: The list of enterprise roles available to the enterprise. - items: &147 + items: &149 title: Enterprise Role description: Enterprise custom roles type: object @@ -18987,8 +19247,8 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: *142 - required: *143 + properties: *144 + required: *145 nullable: true created_at: description: The date and time the role was created. @@ -19081,7 +19341,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-team parameters: - *41 - - &144 + - &146 name: team_slug description: The slug of the enterprise team name. in: path @@ -19124,8 +19384,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-a-team parameters: - *41 - - *144 - - &145 + - *146 + - &147 name: role_id description: The unique identifier of the role. in: path @@ -19167,8 +19427,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-an-enterprise-role-from-a-team parameters: - *41 - - *144 - - *145 + - *146 + - *147 responses: '204': description: Response @@ -19202,7 +19462,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-user parameters: - *41 - - &146 + - &148 name: username description: The handle for the GitHub user account. in: path @@ -19242,8 +19502,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-an-enterprise-user parameters: - *41 - - *146 - - *145 + - *148 + - *147 responses: '204': description: Response @@ -19276,8 +19536,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-enterprise-user-role-assignment parameters: - *41 - - *146 - - *145 + - *148 + - *147 responses: '204': description: Response @@ -19311,13 +19571,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#get-an-enterprise-role parameters: - *41 - - *145 + - *147 responses: '200': description: Response content: application/json: - schema: *147 + schema: *149 examples: default: value: @@ -19371,7 +19631,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-teams-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *145 + - *147 - *17 - *19 responses: @@ -19381,9 +19641,9 @@ paths: application/json: schema: type: array - items: *148 + items: *150 examples: - default: &214 + default: &216 value: - id: 1 name: Justice League @@ -19422,7 +19682,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-users-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *145 + - *147 - *17 - *19 responses: @@ -19454,7 +19714,7 @@ paths: description: Enterprise Team the user has gotten the role through type: array - items: *148 + items: *150 examples: default: value: @@ -19546,7 +19806,7 @@ paths: application/json: schema: *22 examples: - default: &378 + default: &380 value: id: 1 account: @@ -19687,7 +19947,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - *146 + - *148 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -19703,9 +19963,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *149 + items: *151 examples: - default: *150 + default: *152 '500': *40 '401': *25 '403': *29 @@ -19748,7 +20008,7 @@ paths: type: integer network_configurations: type: array - items: &151 + items: &153 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -19800,7 +20060,7 @@ paths: - name - created_on examples: - default: &466 + default: &468 value: total_count: 2 network_configurations: @@ -19892,9 +20152,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: &152 + default: &154 value: id: 123456789ABCDEF name: My network configuration @@ -19921,7 +20181,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - &153 + - &155 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -19933,9 +20193,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 headers: Link: *47 x-github: @@ -19955,7 +20215,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - *153 + - *155 requestBody: required: true content: @@ -20008,9 +20268,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20028,7 +20288,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise parameters: - *41 - - *153 + - *155 responses: '204': description: Response @@ -20051,7 +20311,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &467 + - &469 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -20063,7 +20323,7 @@ paths: description: Response content: application/json: - schema: &468 + schema: &470 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -20097,7 +20357,7 @@ paths: - subnet_id - region examples: - default: &469 + default: &471 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -20136,7 +20396,7 @@ paths: application/json: schema: type: array - items: &154 + items: &156 title: Custom Property for Organization description: Custom property defined for an organization allOf: @@ -20204,7 +20464,7 @@ paths: - property_name - value_type examples: - default: &155 + default: &157 value: - property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20264,7 +20524,7 @@ paths: type: array description: The array of organization custom properties to create or update. - items: *154 + items: *156 minItems: 1 maxItems: 100 required: @@ -20297,9 +20557,9 @@ paths: application/json: schema: type: array - items: *154 + items: *156 examples: - default: *155 + default: *157 '403': *29 '404': *6 '422': *7 @@ -20326,7 +20586,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#get-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - &156 + - &158 name: custom_property_name description: The custom property name in: path @@ -20338,9 +20598,9 @@ paths: description: Response content: application/json: - schema: *154 + schema: *156 examples: - default: &157 + default: &159 value: property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20377,7 +20637,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#create-or-update-an-organization-custom-property-definition-on-an-enterprise parameters: - *41 - - *156 + - *158 requestBody: required: true content: @@ -20446,9 +20706,9 @@ paths: description: Response content: application/json: - schema: *154 + schema: *156 examples: - default: *157 + default: *159 '403': *29 '404': *6 '422': *7 @@ -20474,7 +20734,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#remove-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - *156 + - *158 responses: '204': *130 '403': *29 @@ -20525,7 +20785,7 @@ paths: example: Hello-World properties: type: array - items: &158 + items: &160 title: Custom Property Value description: Custom property name and associated value type: object @@ -20608,7 +20868,7 @@ paths: type: array description: List of custom property names and associated values to apply to the organizations. - items: *158 + items: *160 required: - organization_logins - properties @@ -20658,7 +20918,7 @@ paths: application/json: schema: type: array - items: &159 + items: &161 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -20726,7 +20986,7 @@ paths: - property_name - value_type examples: - default: &160 + default: &162 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20784,7 +21044,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *159 + items: *161 minItems: 1 maxItems: 100 required: @@ -20814,9 +21074,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *160 + default: *162 '403': *29 '404': *6 x-github: @@ -20840,15 +21100,15 @@ paths: parameters: - *41 - *89 - - *156 + - *158 responses: '200': description: Response content: application/json: - schema: *159 + schema: *161 examples: - default: &161 + default: &163 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20881,15 +21141,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *41 - - *156 + - *158 responses: '200': description: Response content: application/json: - schema: *159 + schema: *161 examples: - default: *161 + default: *163 '403': *29 '404': *6 x-github: @@ -20911,12 +21171,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *41 - - *156 + - *158 requestBody: required: true content: application/json: - schema: &434 + schema: &436 title: Custom Property Set Payload description: Custom property set payload type: object @@ -20982,9 +21242,9 @@ paths: description: Response content: application/json: - schema: *159 + schema: *161 examples: - default: *161 + default: *163 '403': *29 '404': *6 x-github: @@ -21006,7 +21266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *41 - - *156 + - *158 responses: '204': *130 '403': *29 @@ -21048,7 +21308,7 @@ paths: - push - repository default: branch - enforcement: &170 + enforcement: &172 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -21061,7 +21321,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &171 + items: &173 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -21102,7 +21362,7 @@ paths: - pull_request - exempt default: always - conditions: &195 + conditions: &197 title: Enterprise ruleset conditions type: object description: |- @@ -21115,7 +21375,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &162 + - &164 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -21141,7 +21401,7 @@ paths: type: string required: - organization_name - - &165 + - &167 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -21170,7 +21430,7 @@ paths: is prevented. required: - repository_name - - &164 + - &166 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -21198,8 +21458,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *162 - - &167 + - *164 + - &169 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -21212,7 +21472,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &163 + items: &165 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -21243,16 +21503,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *163 + items: *165 required: - repository_property - - *164 + - *166 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &166 + - &168 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -21269,22 +21529,22 @@ paths: type: integer required: - organization_id - - *165 - - *164 + - *167 + - *166 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: + - *168 + - *169 - *166 - - *167 - - *164 - type: object title: organization_property_and_repository_name description: Conditions to target organizations by property and all repositories allOf: - - &169 + - &171 title: Repository ruleset conditions for organization properties type: object description: Parameters for a organization property condition @@ -21297,7 +21557,7 @@ paths: description: The organization properties and values to include. All of these properties must match for the condition to pass. - items: &168 + items: &170 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a organization @@ -21321,28 +21581,28 @@ paths: description: The organization properties and values to exclude. The condition will not pass if any of these properties match. - items: *168 + items: *170 required: - organization_property - - *165 - - *164 + - *167 + - *166 - type: object title: organization_property_and_repository_property description: Conditions to target organizations by property and repositories by property allOf: + - *171 - *169 - - *167 - - *164 + - *166 rules: type: array description: An array of rules within the ruleset. - items: &196 + items: &198 title: Repository Rule type: object description: A repository rule. oneOf: - - &172 + - &174 title: creation description: Only allow users with bypass permission to create matching refs. @@ -21354,7 +21614,7 @@ paths: type: string enum: - creation - - &173 + - &175 title: update description: Only allow users with bypass permission to update matching refs. @@ -21375,7 +21635,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &174 + - &176 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -21387,7 +21647,7 @@ paths: type: string enum: - deletion - - &175 + - &177 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -21399,7 +21659,7 @@ paths: type: string enum: - required_linear_history - - &176 + - &178 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -21423,7 +21683,7 @@ paths: type: string required: - required_deployment_environments - - &177 + - &179 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -21435,7 +21695,7 @@ paths: type: string enum: - required_signatures - - &178 + - &180 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -21538,7 +21798,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &179 + - &181 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -21585,7 +21845,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &180 + - &182 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -21597,7 +21857,7 @@ paths: type: string enum: - non_fast_forward - - &181 + - &183 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -21634,7 +21894,7 @@ paths: required: - operator - pattern - - &182 + - &184 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -21671,7 +21931,7 @@ paths: required: - operator - pattern - - &183 + - &185 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -21708,7 +21968,7 @@ paths: required: - operator - pattern - - &184 + - &186 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -21745,7 +22005,7 @@ paths: required: - operator - pattern - - &185 + - &187 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -21782,7 +22042,7 @@ paths: required: - operator - pattern - - &186 + - &188 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -21806,7 +22066,7 @@ paths: type: string required: - restricted_file_paths - - &187 + - &189 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -21830,7 +22090,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &188 + - &190 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -21853,7 +22113,7 @@ paths: type: string required: - restricted_file_extensions - - &189 + - &191 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -21877,7 +22137,7 @@ paths: maximum: 100 required: - max_file_size - - &190 + - &192 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -21926,7 +22186,7 @@ paths: - repository_id required: - workflows - - &191 + - &193 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -21986,7 +22246,7 @@ paths: - tool required: - code_scanning_tools - - &192 + - &194 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review @@ -22036,7 +22296,7 @@ paths: description: Response content: application/json: - schema: &193 + schema: &195 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -22071,11 +22331,11 @@ paths: source: type: string description: The name of the source - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 + items: *173 current_user_can_bypass: type: string description: |- @@ -22107,8 +22367,8 @@ paths: conditions: nullable: true anyOf: - - *164 - - &440 + - *166 + - &442 title: Organization ruleset conditions type: object description: |- @@ -22122,14 +22382,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *164 - - *165 + - *166 + - *167 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *164 + - *166 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -22151,20 +22411,20 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *164 - - *167 + - *166 + - *169 rules: type: array - items: &744 + items: &746 title: Repository Rule type: object description: A repository rule. oneOf: - - *172 - - *173 - *174 - *175 - - &742 + - *176 + - *177 + - &744 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22242,8 +22502,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *176 - - *177 - *178 - *179 - *180 @@ -22259,6 +22517,8 @@ paths: - *190 - *191 - *192 + - *193 + - *194 created_at: type: string format: date-time @@ -22266,7 +22526,7 @@ paths: type: string format: date-time examples: - default: &194 + default: &196 value: id: 21 name: super cool ruleset @@ -22325,9 +22585,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *194 + default: *196 '404': *6 '500': *40 x-github: @@ -22371,16 +22631,16 @@ paths: - tag - push - repository - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 - conditions: *195 + items: *173 + conditions: *197 rules: description: An array of rules within the ruleset. type: array - items: *196 + items: *198 examples: default: value: @@ -22404,9 +22664,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *194 + default: *196 '404': *6 '500': *40 x-github: @@ -22468,7 +22728,7 @@ paths: application/json: schema: type: array - items: &197 + items: &199 title: Ruleset version type: object description: The historical version of a ruleset @@ -22492,7 +22752,7 @@ paths: type: string format: date-time examples: - default: &443 + default: &445 value: - version_id: 3 actor: @@ -22545,9 +22805,9 @@ paths: description: Response content: application/json: - schema: &444 + schema: &446 allOf: - - *197 + - *199 - type: object required: - state @@ -22600,7 +22860,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &445 + - &447 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -22611,7 +22871,7 @@ paths: enum: - open - resolved - - &446 + - &448 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -22621,7 +22881,7 @@ paths: required: false schema: type: string - - &447 + - &449 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -22632,7 +22892,7 @@ paths: required: false schema: type: string - - &448 + - &450 name: exclude_providers in: query description: |- @@ -22643,7 +22903,7 @@ paths: required: false schema: type: string - - &449 + - &451 name: providers in: query description: |- @@ -22654,7 +22914,7 @@ paths: required: false schema: type: string - - &450 + - &452 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -22663,7 +22923,7 @@ paths: required: false schema: type: string - - &451 + - &453 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -22682,7 +22942,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &452 + - &454 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. @@ -22698,7 +22958,7 @@ paths: - *17 - *110 - *111 - - &453 + - &455 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -22707,7 +22967,7 @@ paths: required: false schema: type: string - - &454 + - &456 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -22716,7 +22976,7 @@ paths: schema: type: boolean default: false - - &455 + - &457 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -22725,7 +22985,7 @@ paths: schema: type: boolean default: false - - &456 + - &458 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -22741,7 +23001,7 @@ paths: application/json: schema: type: array - items: &457 + items: &459 type: object properties: number: *131 @@ -22760,14 +23020,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &756 + state: &758 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: &757 + resolution: &759 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -22884,8 +23144,8 @@ paths: pull request. ' - oneOf: &758 - - &760 + oneOf: &760 + - &762 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22943,7 +23203,7 @@ paths: - blob_url - commit_sha - commit_url - - &761 + - &763 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. @@ -22998,7 +23258,7 @@ paths: - page_url - commit_sha - commit_url - - &762 + - &764 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -23018,7 +23278,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &763 + - &765 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -23038,7 +23298,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &764 + - &766 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -23058,7 +23318,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &765 + - &767 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -23072,7 +23332,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &766 + - &768 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -23086,7 +23346,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &767 + - &769 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -23100,7 +23360,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &768 + - &770 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. @@ -23120,7 +23380,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &769 + - &771 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. @@ -23140,7 +23400,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &770 + - &772 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. @@ -23160,7 +23420,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &771 + - &773 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. @@ -23180,7 +23440,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &772 + - &774 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. @@ -23228,7 +23488,7 @@ paths: required: *21 nullable: true examples: - default: &458 + default: &460 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -23406,7 +23666,7 @@ paths: headers: Link: *47 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23437,13 +23697,13 @@ paths: description: Response content: application/json: - schema: &459 + schema: &461 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. type: object properties: - pattern_config_version: &200 + pattern_config_version: &202 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -23452,7 +23712,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &199 + items: &201 type: object properties: token_type: @@ -23518,9 +23778,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *199 + items: *201 examples: - default: &460 + default: &462 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -23575,7 +23835,7 @@ paths: schema: type: object properties: - pattern_config_version: *200 + pattern_config_version: *202 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -23601,7 +23861,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *200 + custom_pattern_version: *202 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -23656,7 +23916,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &463 + - &465 name: advanced_security_product in: query description: | @@ -23676,7 +23936,7 @@ paths: description: Success content: application/json: - schema: &464 + schema: &466 type: object properties: total_advanced_security_committers: @@ -23731,7 +23991,7 @@ paths: required: - repositories examples: - default: &465 + default: &467 value: total_advanced_security_committers: 2 total_count: 2 @@ -24141,7 +24401,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#get-a-budget-by-id parameters: - *41 - - &201 + - &203 name: budget_id description: The ID corresponding to the budget. in: path @@ -24238,7 +24498,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24479,7 +24739,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#delete-a-budget parameters: - *41 - - *201 + - *203 responses: '200': description: Response when deleting a budget @@ -24506,7 +24766,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24605,7 +24865,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24734,7 +24994,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#get-a-cost-center-by-id parameters: - *41 - - &203 + - &205 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -24791,7 +25051,7 @@ paths: - name - resources examples: - default: &202 + default: &204 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -24805,7 +25065,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24894,13 +25154,13 @@ paths: - name - resources examples: - default: *202 + default: *204 '400': *14 '403': *29 '404': *6 '409': *121 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24918,7 +25178,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#delete-a-cost-center parameters: - *41 - - *203 + - *205 responses: '200': description: Response when deleting a cost center @@ -24957,7 +25217,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24978,7 +25238,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#add-resources-to-a-cost-center parameters: - *41 - - *203 + - *205 requestBody: required: true content: @@ -25050,7 +25310,7 @@ paths: '403': *29 '409': *121 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25070,7 +25330,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#remove-resources-from-a-cost-center parameters: - *41 - - *203 + - *205 requestBody: required: true content: @@ -25117,7 +25377,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25138,7 +25398,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *41 - - &206 + - &208 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, @@ -25147,7 +25407,7 @@ paths: required: false schema: type: integer - - &208 + - &210 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 @@ -25156,7 +25416,7 @@ paths: required: false schema: type: integer - - &207 + - &209 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 @@ -25165,7 +25425,7 @@ paths: required: false schema: type: integer - - &209 + - &211 name: organization description: The organization name to query usage for. The name is not case sensitive. @@ -25185,7 +25445,7 @@ paths: required: false schema: type: string - - &210 + - &212 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -25324,7 +25584,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25357,7 +25617,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &204 + items: &206 type: object properties: id: @@ -25447,7 +25707,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25513,9 +25773,9 @@ paths: description: Report export request accepted content: application/json: - schema: *204 + schema: *206 examples: - usage-report-export: &205 + usage-report-export: &207 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -25531,7 +25791,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25565,14 +25825,14 @@ paths: description: Usage report export details content: application/json: - schema: *204 + schema: *206 examples: - usage-report-export: *205 + usage-report-export: *207 '401': *25 '403': *29 '404': *6 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25593,7 +25853,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *41 - - *206 + - *208 - name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -25602,7 +25862,7 @@ paths: required: false schema: type: integer - - *207 + - *209 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -25685,7 +25945,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25709,17 +25969,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *41 - - *206 - *208 - - *207 + - *210 - *209 + - *211 - name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *210 + - *212 - name: sku description: The SKU to query for usage. in: query @@ -25852,7 +26112,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25886,7 +26146,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team parameters: - *41 - - *144 + - *146 - 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`). @@ -25918,13 +26178,13 @@ paths: application/json: schema: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '500': *40 '403': *29 '404': *6 - '422': *213 + '422': *215 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -25951,9 +26211,9 @@ paths: application/json: schema: type: array - items: *148 + items: *150 examples: - default: *214 + default: *216 headers: Link: *47 '403': *29 @@ -26028,9 +26288,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: &219 + default: &221 value: id: 1 name: Justice League @@ -26059,7 +26319,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *41 - - &215 + - &217 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -26078,7 +26338,7 @@ paths: type: array items: *4 examples: - default: &216 + default: &218 value: - login: octocat id: 1 @@ -26117,7 +26377,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *41 - - *215 + - *217 requestBody: required: true content: @@ -26148,7 +26408,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26166,7 +26426,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *41 - - *215 + - *217 requestBody: required: true content: @@ -26197,7 +26457,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26215,8 +26475,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *41 - - *215 - - *146 + - *217 + - *148 responses: '200': description: User is a member of the enterprise team. @@ -26224,7 +26484,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &217 + exampleKey1: &219 value: login: octocat id: 1 @@ -26260,8 +26520,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *41 - - *215 - - *146 + - *217 + - *148 responses: '201': description: Successfully added team member @@ -26269,7 +26529,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *217 + exampleKey1: *219 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26287,8 +26547,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *41 - - *215 - - *146 + - *217 + - *148 responses: '204': description: Response @@ -26310,7 +26570,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *41 - - *215 + - *217 - *17 - *19 responses: @@ -26322,7 +26582,7 @@ paths: type: array items: *75 examples: - default: &218 + default: &220 value: login: github id: 1 @@ -26353,7 +26613,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *41 - - *215 + - *217 requestBody: required: true content: @@ -26383,7 +26643,7 @@ paths: type: array items: *75 examples: - default: &258 + default: &260 value: - login: github id: 1 @@ -26414,7 +26674,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *41 - - *215 + - *217 requestBody: required: true content: @@ -26455,7 +26715,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *41 - - *215 + - *217 - *89 responses: '200': @@ -26464,7 +26724,7 @@ paths: application/json: schema: *75 examples: - default: *218 + default: *220 '404': description: The team is not assigned to the organization x-github: @@ -26483,7 +26743,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *41 - - *215 + - *217 - *89 responses: '201': @@ -26492,7 +26752,7 @@ paths: application/json: schema: *75 examples: - default: *218 + default: *220 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26509,7 +26769,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *41 - - *215 + - *217 - *89 responses: '204': @@ -26534,7 +26794,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *41 - - &220 + - &222 name: team_slug description: The slug of the team name. in: path @@ -26546,9 +26806,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *219 + default: *221 headers: Link: *47 '403': *29 @@ -26568,7 +26828,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *41 - - *220 + - *222 requestBody: required: true content: @@ -26623,9 +26883,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *219 + default: *221 headers: Link: *47 '403': *29 @@ -26648,7 +26908,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *41 - - *220 + - *222 responses: '204': description: Response @@ -26747,7 +27007,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Event description: Event type: object @@ -26757,7 +27017,7 @@ paths: type: type: string nullable: true - actor: &221 + actor: &223 title: Actor description: Actor type: object @@ -26797,7 +27057,7 @@ paths: - id - name - url - org: *221 + org: *223 payload: oneOf: - title: CreateEvent @@ -26843,7 +27103,7 @@ paths: properties: action: type: string - discussion: &895 + discussion: &897 title: Discussion description: A Discussion in a repository. type: object @@ -27130,7 +27390,7 @@ paths: - id labels: type: array - items: &226 + items: &228 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -27205,12 +27465,12 @@ paths: properties: action: type: string - issue: &227 + issue: &229 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &676 + properties: &678 id: type: integer format: int64 @@ -27323,7 +27583,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &423 + properties: &425 url: type: string format: uri @@ -27393,7 +27653,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &424 + required: &426 - closed_issues - creator - description @@ -27472,7 +27732,7 @@ paths: timeline_url: type: string format: uri - type: &388 + type: &390 title: Issue Type description: The type of issue. type: object @@ -27533,9 +27793,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *222 - required: *223 - author_association: &224 + properties: *224 + required: *225 + author_association: &226 title: author_association type: string example: OWNER @@ -27550,7 +27810,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &225 + reactions: &227 title: Reaction Rollup type: object properties: @@ -27586,7 +27846,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &815 + sub_issues_summary: &817 title: Sub-issues Summary type: object properties: @@ -27611,7 +27871,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &228 + properties: &230 id: description: Unique identifier of the issue comment example: 42 @@ -27654,7 +27914,7 @@ paths: issue_url: type: string format: uri - author_association: *224 + author_association: *226 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -27665,15 +27925,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 - reactions: *225 + properties: *224 + required: *225 + reactions: *227 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &699 + properties: &701 pinned_at: type: string format: date-time @@ -27685,11 +27945,11 @@ paths: properties: *20 required: *21 nullable: true - required: &700 + required: &702 - pinned_at - pinned_by nullable: true - required: &229 + required: &231 - id - node_id - html_url @@ -27699,7 +27959,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &816 + issue_dependencies_summary: &818 title: Issue Dependencies Summary type: object properties: @@ -27718,7 +27978,7 @@ paths: - total_blocking issue_field_values: type: array - items: &683 + items: &685 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27779,7 +28039,7 @@ paths: - node_id - data_type - value - required: &677 + required: &679 - assignee - closed_at - comments @@ -27804,10 +28064,10 @@ paths: assignees: type: array items: *4 - label: *226 + label: *228 labels: type: array - items: *226 + items: *228 required: - action - issue @@ -27816,14 +28076,14 @@ paths: properties: action: type: string - issue: *227 - comment: &672 + issue: *229 + comment: &674 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 required: - action - issue @@ -27996,8 +28256,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true allow_forking: type: boolean @@ -28086,7 +28346,7 @@ paths: type: string number: type: integer - pull_request: &232 + pull_request: &234 title: Pull Request Minimal type: object properties: @@ -28157,10 +28417,10 @@ paths: assignees: type: array items: *4 - label: *226 + label: *228 labels: type: array - items: *226 + items: *228 required: - action - number @@ -28170,7 +28430,7 @@ paths: properties: action: type: string - pull_request: *232 + pull_request: *234 comment: type: object properties: @@ -28421,7 +28681,7 @@ paths: - pull_request updated_at: type: string - pull_request: *232 + pull_request: *234 required: - action - review @@ -28470,7 +28730,7 @@ paths: updated_at: type: string format: date-time - reactions: *225 + reactions: *227 required: - action - comment @@ -28481,7 +28741,7 @@ paths: type: string release: allOf: - - &735 + - &737 title: Release description: A release. type: object @@ -28552,7 +28812,7 @@ paths: author: *4 assets: type: array - items: &736 + items: &738 title: Release Asset description: Data related to a release. type: object @@ -28627,7 +28887,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *225 + reactions: *227 required: - assets_url - upload_url @@ -28719,7 +28979,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28800,7 +29060,7 @@ paths: _links: type: object properties: - timeline: &233 + timeline: &235 title: Link With Type description: Hypermedia Link with Type type: object @@ -28812,17 +29072,17 @@ paths: required: - href - type - user: *233 - security_advisories: *233 - current_user: *233 - current_user_public: *233 - current_user_actor: *233 - current_user_organization: *233 + user: *235 + security_advisories: *235 + current_user: *235 + current_user_public: *235 + current_user_actor: *235 + current_user_organization: *235 current_user_organizations: type: array - items: *233 - repository_discussions: *233 - repository_discussions_category: *233 + items: *235 + repository_discussions: *235 + repository_discussions_category: *235 required: - timeline - user @@ -28884,7 +29144,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *234 + - *236 - *17 - *19 responses: @@ -28894,7 +29154,7 @@ paths: application/json: schema: type: array - items: &235 + items: &237 title: Base Gist description: Base Gist type: object @@ -28993,7 +29253,7 @@ paths: - created_at - updated_at examples: - default: &236 + default: &238 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -29114,7 +29374,7 @@ paths: description: Response content: application/json: - schema: &237 + schema: &239 title: Gist Simple description: Gist Simple type: object @@ -29131,7 +29391,7 @@ paths: url: type: string format: uri - user: &822 + user: &824 title: Public User description: Public User type: object @@ -29493,7 +29753,7 @@ paths: truncated: type: boolean examples: - default: &238 + default: &240 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -29597,7 +29857,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *234 + - *236 - *17 - *19 responses: @@ -29607,9 +29867,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *236 + default: *238 headers: Link: *47 '422': *15 @@ -29631,7 +29891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *234 + - *236 - *17 - *19 responses: @@ -29641,9 +29901,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *236 + default: *238 headers: Link: *47 '401': *25 @@ -29670,7 +29930,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &239 + - &241 name: gist_id description: The unique identifier of the gist. in: path @@ -29682,10 +29942,10 @@ paths: description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 - '403': &242 + default: *240 + '403': &244 description: Forbidden Gist content: application/json: @@ -29732,7 +29992,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *239 + - *241 requestBody: required: true content: @@ -29792,9 +30052,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *239 examples: - updateGist: *238 + updateGist: *240 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -29952,7 +30212,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *239 + - *241 responses: '204': description: Response @@ -29980,7 +30240,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *239 + - *241 - *17 - *19 responses: @@ -29990,7 +30250,7 @@ paths: application/json: schema: type: array - items: &240 + items: &242 title: Gist Comment description: A comment made to a gist. type: object @@ -30025,7 +30285,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *224 + author_association: *226 required: - url - id @@ -30089,7 +30349,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *239 + - *241 requestBody: required: true content: @@ -30114,9 +30374,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *242 examples: - default: &241 + default: &243 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -30173,8 +30433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *239 - - &243 + - *241 + - &245 name: comment_id description: The unique identifier of the comment. in: path @@ -30187,12 +30447,12 @@ paths: description: Response content: application/json: - schema: *240 + schema: *242 examples: - default: *241 + default: *243 '304': *37 '404': *6 - '403': *242 + '403': *244 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30213,8 +30473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *239 - - *243 + - *241 + - *245 requestBody: required: true content: @@ -30239,9 +30499,9 @@ paths: description: Response content: application/json: - schema: *240 + schema: *242 examples: - default: *241 + default: *243 '404': *6 x-github: githubCloudOnly: false @@ -30258,8 +30518,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *239 - - *243 + - *241 + - *245 responses: '204': description: Response @@ -30282,7 +30542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *239 + - *241 - *17 - *19 responses: @@ -30383,7 +30643,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *239 + - *241 - *17 - *19 responses: @@ -30393,7 +30653,7 @@ paths: application/json: schema: type: array - items: *237 + items: *239 examples: default: value: @@ -30458,13 +30718,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *239 + - *241 responses: '201': description: Response content: application/json: - schema: *235 + schema: *237 examples: default: value: @@ -30535,7 +30795,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *239 + - *241 responses: '204': description: Response if gist is starred @@ -30565,7 +30825,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *239 + - *241 responses: '204': description: Response @@ -30587,7 +30847,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *239 + - *241 responses: '204': description: Response @@ -30615,7 +30875,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *239 + - *241 - name: sha in: path required: true @@ -30626,9 +30886,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 '422': *15 '404': *6 '403': *29 @@ -30996,7 +31256,7 @@ paths: - closed - all default: open - - &391 + - &393 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -31015,7 +31275,7 @@ paths: - comments default: created - *112 - - *234 + - *236 - name: collab in: query required: false @@ -31045,9 +31305,9 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: &392 + default: &394 value: - id: 1 node_id: MDU6SXNzdWUx @@ -31331,8 +31591,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 examples: default: value: @@ -31617,7 +31877,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &244 + X-CommonMarker-Version: &246 example: 0.17.4 schema: type: string @@ -31672,7 +31932,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *244 + X-CommonMarker-Version: *246 content: text/html: schema: @@ -31701,7 +31961,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &247 + - &249 name: account_id description: account_id parameter in: path @@ -31713,7 +31973,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &248 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -31743,7 +32003,7 @@ paths: nullable: true id: type: integer - plan: &245 + plan: &247 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -31832,7 +32092,7 @@ paths: nullable: true updated_at: type: string - plan: *245 + plan: *247 required: - url - id @@ -31840,7 +32100,7 @@ paths: - login - marketplace_purchase examples: - default: &248 + default: &250 value: url: https://api.github.com/orgs/github type: Organization @@ -31925,9 +32185,9 @@ paths: application/json: schema: type: array - items: *245 + items: *247 examples: - default: &249 + default: &251 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -31967,14 +32227,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &250 + - &252 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &251 + - &253 name: sort description: The property to sort the results by. in: query @@ -32004,9 +32264,9 @@ paths: application/json: schema: type: array - items: *246 + items: *248 examples: - default: &252 + default: &254 value: - url: https://api.github.com/orgs/github type: Organization @@ -32080,15 +32340,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *247 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *248 examples: - default: *248 + default: *250 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -32120,9 +32380,9 @@ paths: application/json: schema: type: array - items: *245 + items: *247 examples: - default: *249 + default: *251 headers: Link: *47 '401': *25 @@ -32145,8 +32405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *250 - - *251 + - *252 + - *253 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -32166,9 +32426,9 @@ paths: application/json: schema: type: array - items: *246 + items: *248 examples: - default: *252 + default: *254 headers: Link: *47 '401': *25 @@ -32432,14 +32692,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &478 + - &480 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &479 + - &481 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -32456,7 +32716,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -32501,7 +32761,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &484 + '301': &486 description: Moved permanently content: application/json: @@ -32523,7 +32783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &709 + - &711 name: all description: If `true`, show notifications marked as read. in: query @@ -32531,7 +32791,7 @@ paths: schema: type: boolean default: false - - &710 + - &712 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -32540,8 +32800,8 @@ paths: schema: type: boolean default: false - - *234 - - &711 + - *236 + - &713 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: @@ -32566,18 +32826,18 @@ paths: application/json: schema: type: array - items: &254 + items: &256 title: Thread description: Thread type: object properties: id: type: string - repository: &288 + repository: &290 title: Minimal Repository description: Minimal Repository type: object - properties: &356 + properties: &358 id: type: integer format: int64 @@ -32863,7 +33123,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &437 + security_and_analysis: &439 nullable: true type: object properties: @@ -32991,7 +33251,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &357 + required: &359 - archive_url - assignees_url - blobs_url @@ -33079,7 +33339,7 @@ paths: - url - subscription_url examples: - default: &712 + default: &714 value: - id: '1' repository: @@ -33245,7 +33505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &255 + - &257 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 @@ -33259,7 +33519,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: default: value: @@ -33362,7 +33622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *255 + - *257 responses: '205': description: Reset Content @@ -33385,7 +33645,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *255 + - *257 responses: '204': description: No content @@ -33408,13 +33668,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *255 + - *257 responses: '200': description: Response content: application/json: - schema: &256 + schema: &258 title: Thread Subscription description: Thread Subscription type: object @@ -33451,7 +33711,7 @@ paths: - url - subscribed examples: - default: &257 + default: &259 value: subscribed: true ignored: false @@ -33482,7 +33742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *255 + - *257 requestBody: required: false content: @@ -33503,9 +33763,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '304': *37 '403': *29 '401': *25 @@ -33528,7 +33788,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *255 + - *257 responses: '204': description: Response @@ -33625,7 +33885,7 @@ paths: type: array items: *75 examples: - default: *258 + default: *260 headers: Link: example: ; rel="next" @@ -33676,7 +33936,7 @@ paths: type: integer custom_roles: type: array - items: &334 + items: &336 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -33724,7 +33984,7 @@ paths: - created_at - updated_at examples: - default: &335 + default: &337 value: id: 8030 name: Security Engineer @@ -33777,7 +34037,7 @@ paths: description: Response content: application/json: - schema: &259 + schema: &261 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -33815,7 +34075,7 @@ paths: required: true content: application/json: - schema: *259 + schema: *261 examples: selected_actions: *44 responses: @@ -33850,7 +34110,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &262 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -33888,7 +34148,7 @@ paths: required: true content: application/json: - schema: *260 + schema: *262 examples: selected_actions: *46 responses: @@ -33929,9 +34189,9 @@ paths: application/json: schema: type: array - items: *158 + items: *160 examples: - default: &718 + default: &720 value: - property_name: environment value: production @@ -33977,11 +34237,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the organization. - items: *158 + items: *160 required: - properties examples: - default: &719 + default: &721 value: properties: - property_name: environment @@ -34028,7 +34288,7 @@ paths: description: Response content: application/json: - schema: &261 + schema: &263 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -34361,7 +34621,7 @@ paths: - updated_at - archived_at examples: - default-response: &262 + default-response: &264 value: login: github id: 1 @@ -34686,17 +34946,17 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 '422': description: Validation failed content: application/json: schema: oneOf: - - *263 - - *264 + - *265 + - *266 '409': *121 x-github: githubCloudOnly: false @@ -34751,9 +35011,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *267 examples: - default: *266 + default: *268 headers: Link: *47 x-github: @@ -34794,7 +35054,7 @@ paths: type: integer repository_cache_usages: type: array - items: &491 + items: &493 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -34869,7 +35129,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -35035,7 +35295,7 @@ paths: application/json: schema: *49 examples: - default: *268 + default: *270 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35127,7 +35387,7 @@ paths: application/json: schema: *52 examples: - default: *269 + default: *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35246,9 +35506,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *272 examples: - default: *271 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35284,7 +35544,7 @@ paths: type: array items: *56 examples: - default: *272 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35527,7 +35787,7 @@ paths: required: true content: application/json: - schema: *273 + schema: *275 examples: default: *60 responses: @@ -35614,7 +35874,7 @@ paths: required: - include_claim_keys examples: - default: &274 + default: &276 value: include_claim_keys: - repo @@ -35653,13 +35913,13 @@ paths: items: type: string examples: - default: *274 + default: *276 responses: '201': description: Empty response content: application/json: - schema: &299 + schema: &301 title: Empty Object description: An object without any properties. type: object @@ -35698,7 +35958,7 @@ paths: schema: type: object properties: - enabled_repositories: &276 + enabled_repositories: &278 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -35712,7 +35972,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *62 - selected_actions_url: *275 + selected_actions_url: *277 sha_pinning_required: *63 required: - enabled_repositories @@ -35754,7 +36014,7 @@ paths: schema: type: object properties: - enabled_repositories: *276 + enabled_repositories: *278 allowed_actions: *62 sha_pinning_required: *63 required: @@ -35790,7 +36050,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *279 examples: response: summary: Example response @@ -35821,7 +36081,7 @@ paths: required: true content: application/json: - schema: *278 + schema: *280 examples: application/json: value: @@ -35859,7 +36119,7 @@ paths: application/json: schema: *64 examples: - default: *279 + default: *281 '404': *6 x-github: enabledForGitHubApps: true @@ -35916,7 +36176,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *282 examples: default: *65 '403': *29 @@ -35941,7 +36201,7 @@ paths: required: true content: application/json: - schema: *281 + schema: *283 examples: default: *65 responses: @@ -35993,7 +36253,7 @@ paths: type: array items: *80 examples: - default: &283 + default: &285 value: total_count: 1 repositories: @@ -36178,7 +36438,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - &282 + - &284 name: repository_id description: The unique identifier of the repository. in: path @@ -36207,7 +36467,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: Response @@ -36403,7 +36663,7 @@ paths: type: array items: *80 examples: - default: *283 + default: *285 '403': *29 '404': *6 x-github: @@ -36472,7 +36732,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: No content @@ -36499,7 +36759,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: No content @@ -36533,7 +36793,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *286 examples: default: *71 x-github: @@ -36567,7 +36827,7 @@ paths: required: false content: application/json: - schema: *285 + schema: *287 examples: default: *71 x-github: @@ -36614,7 +36874,7 @@ paths: type: number runner_groups: type: array - items: &286 + items: &288 type: object properties: id: @@ -36802,9 +37062,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: &287 + default: &289 value: id: 2 name: octo-runner-group @@ -36846,7 +37106,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: default: value: @@ -36937,9 +37197,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *288 examples: - default: *287 + default: *289 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -37003,7 +37263,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -37044,9 +37304,9 @@ paths: type: number repositories: type: array - items: *288 + items: *290 examples: - default: &332 + default: &334 value: total_count: 1 repositories: @@ -37345,7 +37605,7 @@ paths: parameters: - *89 - *74 - - *282 + - *284 responses: '204': description: Response @@ -37369,7 +37629,7 @@ paths: parameters: - *89 - *74 - - *282 + - *284 responses: '204': description: Response @@ -37587,9 +37847,9 @@ paths: application/json: schema: type: array - items: *289 + items: *291 examples: - default: *290 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37654,7 +37914,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *293 '404': *6 '422': *7 '409': *121 @@ -37693,7 +37953,7 @@ paths: application/json: schema: *81 examples: - default: *292 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37729,7 +37989,7 @@ paths: application/json: schema: *81 examples: - default: *293 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37760,7 +38020,7 @@ paths: application/json: schema: *78 examples: - default: *294 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37935,7 +38195,7 @@ paths: - *89 - *77 responses: - '200': *295 + '200': *297 '404': *6 x-github: githubCloudOnly: false @@ -37964,7 +38224,7 @@ paths: parameters: - *89 - *77 - - *296 + - *298 responses: '200': *83 '404': *6 @@ -38009,7 +38269,7 @@ paths: type: integer secrets: type: array - items: &297 + items: &299 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -38088,7 +38348,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &513 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -38117,7 +38377,7 @@ paths: - key_id - key examples: - default: &512 + default: &514 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38143,7 +38403,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - *89 - - &298 + - &300 name: secret_name description: The name of the secret. in: path @@ -38155,7 +38415,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *299 examples: default: value: @@ -38186,7 +38446,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -38243,7 +38503,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -38270,7 +38530,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - *89 - - *298 + - *300 responses: '204': description: Response @@ -38297,7 +38557,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 - *19 - *17 responses: @@ -38315,9 +38575,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: &302 + default: &304 value: total_count: 1 repositories: @@ -38410,7 +38670,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -38463,7 +38723,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -38497,7 +38757,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -38530,7 +38790,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *89 - - &496 + - &498 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -38554,7 +38814,7 @@ paths: type: integer variables: type: array - items: &300 + items: &302 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -38687,7 +38947,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -38713,7 +38973,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - *89 - - &301 + - &303 name: name description: The name of the variable. in: path @@ -38725,7 +38985,7 @@ paths: description: Response content: application/json: - schema: *300 + schema: *302 examples: default: value: @@ -38756,7 +39016,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - *89 - - *301 + - *303 requestBody: required: true content: @@ -38819,7 +39079,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - *89 - - *301 + - *303 responses: '204': description: Response @@ -38846,7 +39106,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *301 + - *303 - *19 - *17 responses: @@ -38864,9 +39124,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: *302 + default: *304 '409': description: Response when the visibility of the variable is not set to `selected` @@ -38893,7 +39153,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *301 + - *303 requestBody: required: true content: @@ -38943,7 +39203,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *301 + - *303 - name: repository_id in: path required: true @@ -38978,7 +39238,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *301 + - *303 - name: repository_id in: path required: true @@ -39036,7 +39296,7 @@ paths: required: true content: application/json: - schema: *303 + schema: *305 examples: default: *87 parameters: @@ -39220,7 +39480,7 @@ paths: type: integer deployment_records: type: array - items: &304 + items: &306 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -39266,7 +39526,7 @@ paths: required: - total_count examples: - default: &305 + default: &307 value: total_count: 1 deployment_records: @@ -39446,11 +39706,11 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *306 required: - total_count examples: - default: *305 + default: *307 '403': description: Forbidden content: @@ -39685,9 +39945,9 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *306 examples: - default: *305 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39816,12 +40076,12 @@ paths: required: - subject_digests examples: - default: &854 + default: &856 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &855 + withPredicateType: &857 value: subject_digests: - sha256:abc123 @@ -39879,7 +40139,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &856 + default: &858 value: attestations_subject_digests: - sha256:abc: @@ -40229,7 +40489,7 @@ paths: initiator: type: string examples: - default: &525 + default: &527 value: attestations: - bundle: @@ -40355,10 +40615,10 @@ paths: required: false schema: type: string - - *306 - - *307 - *308 - *309 + - *310 + - *311 - *17 responses: '200': @@ -40367,9 +40627,9 @@ paths: application/json: schema: type: array - items: *310 + items: *312 examples: - default: *311 + default: *313 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -40398,7 +40658,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40418,7 +40678,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - *89 - - *146 + - *148 responses: '204': description: If the user is blocked @@ -40444,7 +40704,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -40465,7 +40725,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -40492,7 +40752,7 @@ paths: subcategory: bypass-requests parameters: - *89 - - &314 + - &316 name: repository_name description: The name of the repository to filter on. in: query @@ -40511,9 +40771,9 @@ paths: application/json: schema: type: array - items: *312 + items: *314 examples: - default: *313 + default: *315 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -40537,7 +40797,7 @@ paths: subcategory: delegated-bypass parameters: - *89 - - *314 + - *316 - *105 - *106 - *107 @@ -40551,9 +40811,9 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: - default: *316 + default: *318 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -40580,7 +40840,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &318 + schema: &320 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -40606,7 +40866,7 @@ paths: application/json: schema: type: array - items: &319 + items: &321 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -40637,7 +40897,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *317 + items: *319 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -40655,7 +40915,7 @@ paths: type: string format: date-time nullable: true - state: *318 + state: *320 contact_link: description: The contact link of the campaign. type: string @@ -40752,7 +41012,7 @@ paths: headers: Link: *47 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40875,9 +41135,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: - default: &320 + default: &322 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -40926,7 +41186,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40960,16 +41220,16 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: - default: *320 + default: *322 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41039,7 +41299,7 @@ paths: type: string format: uri nullable: true - state: *318 + state: *320 examples: default: value: @@ -41049,9 +41309,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: - default: *320 + default: *322 '400': description: Bad Request content: @@ -41063,7 +41323,7 @@ paths: content: application/json: schema: *3 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41095,7 +41355,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41118,8 +41378,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - *321 - - *322 + - *323 + - *324 - *110 - *111 - *19 @@ -41130,7 +41390,7 @@ paths: be returned. in: query required: false - schema: *323 + schema: *325 - name: sort description: The property by which to sort the results. in: query @@ -41146,7 +41406,7 @@ paths: be returned. in: query required: false - schema: &551 + schema: &553 type: string description: Severity of a code scanning alert. enum: @@ -41172,13 +41432,13 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: - default: *325 + default: *327 headers: Link: *47 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41550,7 +41810,7 @@ paths: application/json: schema: *116 examples: - default: *326 + default: *328 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41578,9 +41838,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '304': *37 '403': *29 '404': *6 @@ -41667,7 +41927,7 @@ paths: application/json: schema: *116 examples: - default: *326 + default: *328 '304': *37 '403': *29 '404': *6 @@ -42112,7 +42372,7 @@ paths: default: value: default_for_new_repos: all - configuration: *326 + configuration: *328 '403': *29 '404': *6 x-github: @@ -42165,13 +42425,13 @@ paths: application/json: schema: type: array - items: *329 + items: *331 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *330 + repository: *332 '403': *29 '404': *6 x-github: @@ -42211,7 +42471,7 @@ paths: type: integer codespaces: type: array - items: &393 + items: &395 type: object title: Codespace description: A codespace. @@ -42236,12 +42496,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *288 + repository: *290 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &583 + properties: &585 name: type: string description: The name of the machine. @@ -42283,7 +42543,7 @@ paths: - ready - in_progress nullable: true - required: &584 + required: &586 - name - display_name - operating_system @@ -42488,7 +42748,7 @@ paths: - pulls_url - recent_folders examples: - default: &394 + default: &396 value: total_count: 3 codespaces: @@ -43112,7 +43372,7 @@ paths: type: integer secrets: type: array - items: &331 + items: &333 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -43151,7 +43411,7 @@ paths: - updated_at - visibility examples: - default: &585 + default: &587 value: total_count: 2 secrets: @@ -43189,7 +43449,7 @@ paths: description: Response content: application/json: - schema: &586 + schema: &588 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -43218,7 +43478,7 @@ paths: - key_id - key examples: - default: &587 + default: &589 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -43242,15 +43502,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *89 - - *298 + - *300 responses: '200': description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: &589 + default: &591 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43278,7 +43538,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -43333,7 +43593,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -43360,7 +43620,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *89 - - *298 + - *300 responses: '204': description: Response @@ -43386,7 +43646,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 - *19 - *17 responses: @@ -43404,9 +43664,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: *302 + default: *304 '404': *6 x-github: githubCloudOnly: false @@ -43429,7 +43689,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -43480,7 +43740,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -43514,7 +43774,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -43717,9 +43977,9 @@ paths: currently being billed. seats: type: array - items: *149 + items: *151 examples: - default: *150 + default: *152 headers: Link: *47 '500': *40 @@ -44203,12 +44463,12 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 required: - total_count - repositories examples: - default: *332 + default: *334 '500': *40 '401': *25 '403': *29 @@ -44294,7 +44554,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: No Content @@ -44328,7 +44588,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-coding-agent-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: No Content @@ -44476,7 +44736,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *333 + '413': *335 '422': *7 x-github: githubCloudOnly: @@ -44539,13 +44799,13 @@ paths: application/json: schema: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '500': *40 '403': *29 '404': *6 - '422': *213 + '422': *215 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44909,7 +45169,7 @@ paths: type: integer custom_roles: type: array - items: *334 + items: *336 examples: default: value: @@ -45001,7 +45261,7 @@ paths: required: true content: application/json: - schema: &336 + schema: &338 type: object properties: name: @@ -45042,9 +45302,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '422': *15 '404': *6 x-github: @@ -45069,15 +45329,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - *89 - - *145 + - *147 responses: '200': description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -45100,12 +45360,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - *89 - - *145 + - *147 requestBody: required: true content: application/json: - schema: &337 + schema: &339 type: object properties: name: @@ -45143,9 +45403,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '422': *15 '404': *6 x-github: @@ -45170,7 +45430,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - *89 - - *145 + - *147 responses: '204': description: Response @@ -45203,7 +45463,7 @@ paths: required: true content: application/json: - schema: *336 + schema: *338 examples: default: value: @@ -45217,9 +45477,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '422': *15 '404': *6 x-github: @@ -45250,15 +45510,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - *89 - - *145 + - *147 responses: '200': description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -45287,12 +45547,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - *89 - - *145 + - *147 requestBody: required: true content: application/json: - schema: *337 + schema: *339 examples: default: value: @@ -45307,9 +45567,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 '422': *15 '404': *6 x-github: @@ -45340,7 +45600,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - *89 - - *145 + - *147 responses: '204': description: Response @@ -45369,12 +45629,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *89 - - *338 - - *339 - *340 - *341 - *342 - *343 + - *344 + - *345 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -45404,7 +45664,7 @@ paths: enum: - patch - deployment - - *344 + - *346 - name: runtime_risk in: query description: |- @@ -45413,8 +45673,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *345 - - *346 + - *347 + - *348 - *112 - *110 - *111 @@ -45426,9 +45686,9 @@ paths: application/json: schema: type: array - items: *347 + items: *349 examples: - default: *348 + default: *350 '304': *37 '400': *14 '403': *29 @@ -45477,104 +45737,9 @@ paths: description: Response content: application/json: - schema: - title: Dependabot Repository Access Details - description: Information about repositories that Dependabot is able - to access in an organization - type: object - properties: - default_level: - type: string - description: The default repository access level for Dependabot - updates. - enum: - - public - - internal - example: internal - nullable: true - accessible_repositories: - type: array - items: - title: Simple Repository - description: A GitHub repository. - type: object - properties: *349 - required: *350 - nullable: true - additionalProperties: false + schema: *351 examples: - default: - value: - default_level: public - accessible_repositories: - - id: 123456 - node_id: MDEwOlJlcG9zaXRvcnkxMjM0NTY= - name: example-repo - full_name: octocat/example-repo - owner: - name: octocat - email: octo@github.com - login: octocat - id: 1 - node_id: MDQ6VXNlcjE= - avatar_url: https://avatars.githubusercontent.com/u/1?v=4 - gravatar_id: 1 - url: https://api.github.com/users/octocat - html_url: https://github.com/octocat/example-repo - followers_url: https://api.github.com/users/octocat/followers - following_url: https://api.github.com/users/octocat/following{/other_user} - gists_url: https://api.github.com/users/octocat/gists{/gist_id} - starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/octocat/subscriptions - organizations_url: https://api.github.com/users/octocat/orgs - repos_url: https://api.github.com/users/octocat/repos - events_url: https://api.github.com/users/octocat/events{/privacy} - received_events_url: https://api.github.com/users/octocat/received_events - type: User - site_admin: false - starred_at: '"2020-07-09T00:17:55Z"' - user_view_type: default - private: false - html_url: https://github.com/octocat/example-repo - description: This is an example repository. - fork: false - url: https://api.github.com/repos/octocat/example-repo - archive_url: https://api.github.com/repos/octocat/example-repo/{archive_format}{/ref} - assignees_url: https://api.github.com/repos/octocat/example-repo/assignees{/user} - blobs_url: https://api.github.com/repos/octocat/example-repo/git/blobs{/sha} - branches_url: https://api.github.com/repos/octocat/example-repo/branches{/branch} - collaborators_url: https://api.github.com/repos/octocat/example-repo/collaborators{/collaborator} - comments_url: https://api.github.com/repos/octocat/example-repo/comments{/number} - commits_url: https://api.github.com/repos/octocat/example-repo/commits{/sha} - compare_url: https://api.github.com/repos/octocat/example-repo/compare/{base}...{head} - contents_url: https://api.github.com/repos/octocat/example-repo/contents/{+path} - contributors_url: https://api.github.com/repos/octocat/example-repo/contributors - deployments_url: https://api.github.com/repos/octocat/example-repo/deployments - downloads_url: https://api.github.com/repos/octocat/example-repo/downloads - events_url: https://api.github.com/repos/octocat/example-repo/events - forks_url: https://api.github.com/repos/octocat/example-repo/forks - git_commits_url: https://api.github.com/repos/octocat/example-repo/git/commits{/sha} - git_refs_url: https://api.github.com/repos/octocat/example-repo/git/refs{/sha} - git_tags_url: https://api.github.com/repos/octocat/example-repo/git/tags{/sha} - issue_comment_url: https://api.github.com/repos/octocat/example-repo/issues/comments{/number} - issue_events_url: https://api.github.com/repos/octocat/example-repo/issues/events{/number} - issues_url: https://api.github.com/repos/octocat/example-repo/issues{/number} - keys_url: https://api.github.com/repos/octocat/example-repo/keys{/key_id} - labels_url: https://api.github.com/repos/octocat/example-repo/labels{/name} - languages_url: https://api.github.com/repos/octocat/example-repo/languages - merges_url: https://api.github.com/repos/octocat/example-repo/merges - milestones_url: https://api.github.com/repos/octocat/example-repo/milestones{/number} - notifications_url: https://api.github.com/repos/octocat/example-repo/notifications{?since,all,participating} - pulls_url: https://api.github.com/repos/octocat/example-repo/pulls{/number} - releases_url: https://api.github.com/repos/octocat/example-repo/releases{/id} - stargazers_url: https://api.github.com/repos/octocat/example-repo/stargazers - statuses_url: https://api.github.com/repos/octocat/example-repo/statuses/{sha} - subscribers_url: https://api.github.com/repos/octocat/example-repo/subscribers - subscription_url: https://api.github.com/repos/octocat/example-repo/subscription - tags_url: https://api.github.com/repos/octocat/example-repo/tags - teams_url: https://api.github.com/repos/octocat/example-repo/teams - trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} - hooks_url: https://api.github.com/repos/octocat/example-repo/hooks + default: *352 '403': *29 '404': *6 x-github: @@ -45737,7 +45902,7 @@ paths: type: integer secrets: type: array - items: &351 + items: &353 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -45814,7 +45979,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &622 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -45831,7 +45996,7 @@ paths: - key_id - key examples: - default: &621 + default: &623 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -45855,13 +46020,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - *89 - - *298 + - *300 responses: '200': description: Response content: application/json: - schema: *351 + schema: *353 examples: default: value: @@ -45890,7 +46055,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -45947,7 +46112,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -45972,7 +46137,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - *89 - - *298 + - *300 responses: '204': description: Response @@ -45997,7 +46162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 - *19 - *17 responses: @@ -46015,9 +46180,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: *302 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46039,7 +46204,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -46090,7 +46255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -46122,7 +46287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *298 + - *300 - name: repository_id in: path required: true @@ -46159,7 +46324,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &630 + - &632 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -46167,7 +46332,7 @@ paths: required: false schema: type: string - - &631 + - &633 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -46175,7 +46340,7 @@ paths: required: false schema: type: string - - &632 + - &634 name: time_period description: |- The time period to filter by. @@ -46191,7 +46356,7 @@ paths: - week - month default: month - - &633 + - &635 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -46206,7 +46371,7 @@ paths: - denied - all default: all - - *314 + - *316 - *17 - *19 responses: @@ -46216,7 +46381,7 @@ paths: application/json: schema: type: array - items: &634 + items: &636 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -46322,7 +46487,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &353 + items: &355 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -46372,7 +46537,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &635 + default: &637 value: - id: 21 number: 42 @@ -46460,11 +46625,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *314 + - *316 - *105 - *106 - *107 - - *352 + - *354 - *17 - *19 responses: @@ -46474,7 +46639,7 @@ paths: application/json: schema: type: array - items: &636 + items: &638 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -46580,7 +46745,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *353 + items: *355 url: type: string format: uri @@ -46591,7 +46756,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &637 + default: &639 value: - id: 21 number: 42 @@ -46679,11 +46844,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *314 + - *316 - *105 - *106 - *107 - - *352 + - *354 - *17 - *19 responses: @@ -46693,9 +46858,9 @@ paths: application/json: schema: type: array - items: *354 + items: *356 examples: - default: *355 + default: *357 '404': *6 '403': *29 '500': *40 @@ -46721,7 +46886,7 @@ paths: application/json: schema: type: array - items: &404 + items: &406 title: Package description: A software package type: object @@ -46771,8 +46936,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *356 - required: *357 + properties: *358 + required: *359 nullable: true created_at: type: string @@ -46791,7 +46956,7 @@ paths: - created_at - updated_at examples: - default: &405 + default: &407 value: - id: 197 name: hello_docker @@ -46879,7 +47044,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: 200-response: value: @@ -46978,7 +47143,7 @@ paths: description: Response content: application/json: - schema: &475 + schema: &477 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -47059,7 +47224,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &476 + default: &478 value: group_id: '123' group_name: Octocat admins @@ -47114,7 +47279,7 @@ paths: description: Response content: application/json: - schema: &472 + schema: &474 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -47151,7 +47316,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &473 + default: &475 value: groups: - group_id: '123' @@ -47196,7 +47361,7 @@ paths: application/json: schema: type: array - items: &382 + items: &384 title: Organization Invitation description: Organization Invitation type: object @@ -47243,7 +47408,7 @@ paths: - invitation_teams_url - node_id examples: - default: &383 + default: &385 value: - id: 1 login: monalisa @@ -47310,7 +47475,7 @@ paths: application/json: schema: type: array - items: &438 + items: &440 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -47324,7 +47489,7 @@ paths: - name - description examples: - default: &439 + default: &441 value: - name: add_assignee description: Assign or remove a user @@ -47365,7 +47530,7 @@ paths: application/json: schema: type: array - items: &358 + items: &360 title: Org Hook description: Org Hook type: object @@ -47534,9 +47699,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: &359 + default: &361 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -47581,7 +47746,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &360 + - &362 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. @@ -47594,9 +47759,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *359 + default: *361 '404': *6 x-github: githubCloudOnly: false @@ -47618,7 +47783,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *360 + - *362 requestBody: required: false content: @@ -47663,7 +47828,7 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: default: value: @@ -47703,7 +47868,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *360 + - *362 responses: '204': description: Response @@ -47729,7 +47894,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *360 + - *362 responses: '200': description: Response @@ -47758,7 +47923,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *360 + - *362 requestBody: required: false content: @@ -47807,10 +47972,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *360 - - *17 - - *361 - *362 + - *17 + - *363 + - *364 responses: '200': description: Response @@ -47818,9 +47983,9 @@ paths: application/json: schema: type: array - items: *363 + items: *365 examples: - default: *364 + default: *366 '400': *14 '422': *15 x-github: @@ -47844,16 +48009,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *360 + - *362 - *16 responses: '200': description: Response content: application/json: - schema: *365 + schema: *367 examples: - default: *366 + default: *368 '400': *14 '422': *15 x-github: @@ -47877,7 +48042,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *360 + - *362 - *16 responses: '202': *39 @@ -47904,7 +48069,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *360 + - *362 responses: '204': description: Response @@ -47927,7 +48092,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &371 + - &373 name: actor_type in: path description: The type of the actor @@ -47940,14 +48105,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &372 + - &374 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &367 + - &369 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`.' @@ -47955,7 +48120,7 @@ paths: required: true schema: type: string - - &368 + - &370 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) @@ -48049,12 +48214,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *367 - - *368 + - *369 + - *370 - *19 - *17 - *112 - - &377 + - &379 name: sort description: The property to sort the results by. in: query @@ -48132,14 +48297,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *367 - - *368 + - *369 + - *370 responses: '200': description: Response content: application/json: - schema: &369 + schema: &371 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -48155,7 +48320,7 @@ paths: type: integer format: int64 examples: - default: &370 + default: &372 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -48176,23 +48341,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &373 + - &375 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *367 - - *368 + - *369 + - *370 responses: '200': description: Response content: application/json: - schema: *369 + schema: *371 examples: - default: *370 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -48211,18 +48376,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *367 - - *368 - - *371 - - *372 + - *369 + - *370 + - *373 + - *374 responses: '200': description: Response content: application/json: - schema: *369 + schema: *371 examples: - default: *370 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -48240,9 +48405,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *89 - - *367 - - *368 - - &374 + - *369 + - *370 + - &376 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -48255,7 +48420,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &377 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -48271,7 +48436,7 @@ paths: type: integer format: int64 examples: - default: &376 + default: &378 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -48308,18 +48473,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *373 - - *367 - - *368 - - *374 + - *375 + - *369 + - *370 + - *376 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: *376 + default: *378 x-github: enabledForGitHubApps: true category: orgs @@ -48337,19 +48502,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *371 - - *372 - - *367 - - *368 + - *373 - *374 + - *369 + - *370 + - *376 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: *376 + default: *378 x-github: enabledForGitHubApps: true category: orgs @@ -48367,13 +48532,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *89 - - *373 - - *367 - - *368 + - *375 + - *369 + - *370 - *19 - *17 - *112 - - *377 + - *379 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -48454,7 +48619,7 @@ paths: application/json: schema: *22 examples: - default: *378 + default: *380 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -48574,12 +48739,12 @@ paths: application/json: schema: anyOf: - - &380 + - &382 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &379 + limit: &381 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -48604,7 +48769,7 @@ paths: properties: {} additionalProperties: false examples: - default: &381 + default: &383 value: limit: collaborators_only origin: organization @@ -48633,13 +48798,13 @@ paths: required: true content: application/json: - schema: &668 + schema: &670 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *379 + limit: *381 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -48663,9 +48828,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: - default: *381 + default: *383 '422': *15 x-github: githubCloudOnly: false @@ -48743,9 +48908,9 @@ paths: application/json: schema: type: array - items: *382 + items: *384 examples: - default: *383 + default: *385 headers: Link: *47 '404': *6 @@ -48823,7 +48988,7 @@ paths: description: Response content: application/json: - schema: *382 + schema: *384 examples: default: value: @@ -48880,7 +49045,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &384 + - &386 name: invitation_id description: The unique identifier of the invitation. in: path @@ -48914,7 +49079,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *384 + - *386 - *17 - *19 responses: @@ -48924,9 +49089,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: &403 + default: &405 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -48969,7 +49134,7 @@ paths: application/json: schema: type: array - items: &385 + items: &387 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -49202,9 +49367,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: &386 + default: &388 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -49260,7 +49425,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *89 - - &387 + - &389 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -49368,9 +49533,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: *386 + default: *388 '404': *6 '422': *7 x-github: @@ -49395,7 +49560,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *89 - - *387 + - *389 responses: '204': *130 '404': *6 @@ -49425,7 +49590,7 @@ paths: application/json: schema: type: array - items: *388 + items: *390 examples: default: value: @@ -49510,9 +49675,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: &389 + default: &391 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -49545,7 +49710,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *89 - - &390 + - &392 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -49598,9 +49763,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: *389 + default: *391 '404': *6 '422': *7 x-github: @@ -49625,7 +49790,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *89 - - *390 + - *392 responses: '204': description: Response @@ -49688,7 +49853,7 @@ paths: - closed - all default: open - - *391 + - *393 - name: type description: Can be the name of an issue type. in: query @@ -49707,7 +49872,7 @@ paths: - comments default: created - *112 - - *234 + - *236 - *17 - *19 responses: @@ -49717,9 +49882,9 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: *392 + default: *394 headers: Link: *47 '404': *6 @@ -49779,7 +49944,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 '422': *15 @@ -49800,7 +49965,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response if requester is an organization member and user is @@ -49835,7 +50000,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -49862,7 +50027,7 @@ paths: - *17 - *19 - *89 - - *146 + - *148 responses: '200': description: Response @@ -49878,9 +50043,9 @@ paths: type: integer codespaces: type: array - items: *393 + items: *395 examples: - default: *394 + default: *396 '304': *37 '500': *40 '401': *25 @@ -49906,8 +50071,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - *89 - - *146 - - &395 + - *148 + - &397 name: codespace_name in: path required: true @@ -49941,16 +50106,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - *89 - - *146 - - *395 + - *148 + - *397 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: &582 + default: &584 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -50124,13 +50289,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - *89 - - *146 + - *148 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *149 + schema: *151 examples: default: value: @@ -50200,13 +50365,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - *89 - - *146 + - *148 responses: '200': description: Response content: application/json: - schema: &396 + schema: &398 title: Org Membership description: Org Membership type: object @@ -50273,7 +50438,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &397 + response-if-user-has-an-active-admin-membership-with-organization: &399 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -50346,7 +50511,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - *89 - - *146 + - *148 requestBody: required: false content: @@ -50374,9 +50539,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - response-if-user-already-had-membership-with-organization: *397 + response-if-user-already-had-membership-with-organization: *399 '422': *15 '403': *29 x-github: @@ -50401,7 +50566,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -50447,7 +50612,7 @@ paths: application/json: schema: type: array - items: &398 + items: &400 title: Migration description: A migration. type: object @@ -50776,7 +50941,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -50955,7 +51120,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &399 + - &401 name: migration_id description: The unique identifier of the migration. in: path @@ -50982,7 +51147,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -51152,7 +51317,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *399 + - *401 responses: '302': description: Response @@ -51174,7 +51339,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *399 + - *401 responses: '204': description: Response @@ -51198,8 +51363,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *399 - - &837 + - *401 + - &839 name: repo_name description: repo_name parameter in: path @@ -51227,7 +51392,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *399 + - *401 - *17 - *19 responses: @@ -51237,9 +51402,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: &410 + default: &412 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51450,7 +51615,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &400 + items: &402 title: Organization Role description: Organization roles type: object @@ -51657,7 +51822,7 @@ paths: description: Response content: application/json: - schema: *400 + schema: *402 examples: default: value: @@ -51709,7 +51874,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *89 - - *220 + - *222 responses: '204': description: Response @@ -51735,8 +51900,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *89 - - *220 - - *145 + - *222 + - *147 responses: '204': description: Response @@ -51766,8 +51931,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *89 - - *220 - - *145 + - *222 + - *147 responses: '204': description: Response @@ -51793,7 +51958,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -51819,8 +51984,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - *89 - - *146 - - *145 + - *148 + - *147 responses: '204': description: Response @@ -51851,8 +52016,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - *89 - - *146 - - *145 + - *148 + - *147 responses: '204': description: Response @@ -51881,13 +52046,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - *89 - - *145 + - *147 responses: '200': description: Response content: application/json: - schema: *400 + schema: *402 examples: default: value: @@ -51945,7 +52110,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - *89 - - *145 + - *147 requestBody: required: true content: @@ -51984,7 +52149,7 @@ paths: description: Response content: application/json: - schema: *400 + schema: *402 examples: default: value: @@ -52038,7 +52203,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - *89 - - *145 + - *147 responses: '204': description: Response @@ -52064,7 +52229,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *89 - - *145 + - *147 - *17 - *19 responses: @@ -52142,8 +52307,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *401 - required: *402 + properties: *403 + required: *404 nullable: true type: description: The ownership type of the team @@ -52175,7 +52340,7 @@ paths: - type - parent examples: - default: *403 + default: *405 headers: Link: *47 '404': @@ -52205,7 +52370,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *89 - - *145 + - *147 - *17 - *19 responses: @@ -52233,13 +52398,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &462 + items: &464 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *401 - required: *402 + properties: *403 + required: *404 name: nullable: true type: string @@ -52334,7 +52499,7 @@ paths: - type - url examples: - default: *216 + default: *218 headers: Link: *47 '404': @@ -52385,7 +52550,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -52411,7 +52576,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - *89 - - *146 + - *148 requestBody: required: false content: @@ -52469,7 +52634,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -52527,7 +52692,7 @@ paths: - nuget - container - *89 - - &838 + - &840 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -52563,12 +52728,12 @@ paths: application/json: schema: type: array - items: *404 + items: *406 examples: - default: *405 + default: *407 '403': *29 '401': *25 - '400': &840 + '400': &842 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52590,7 +52755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &406 + - &408 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 @@ -52608,7 +52773,7 @@ paths: - docker - nuget - container - - &407 + - &409 name: package_name description: The name of the package. in: path @@ -52621,7 +52786,7 @@ paths: description: Response content: application/json: - schema: *404 + schema: *406 examples: default: value: @@ -52673,8 +52838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *406 - - *407 + - *408 + - *409 - *89 responses: '204': @@ -52707,8 +52872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *406 - - *407 + - *408 + - *409 - *89 - name: token description: package token @@ -52741,8 +52906,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *406 - - *407 + - *408 + - *409 - *89 - *19 - *17 @@ -52763,7 +52928,7 @@ paths: application/json: schema: type: array - items: &408 + items: &410 title: Package Version description: A version of a software package type: object @@ -52888,10 +53053,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *406 - - *407 + - *408 + - *409 - *89 - - &409 + - &411 name: package_version_id description: Unique identifier of the package version. in: path @@ -52903,7 +53068,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *410 examples: default: value: @@ -52939,10 +53104,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *406 - - *407 - - *89 + - *408 - *409 + - *89 + - *411 responses: '204': description: Response @@ -52974,10 +53139,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *406 - - *407 - - *89 + - *408 - *409 + - *89 + - *411 responses: '204': description: Response @@ -53007,7 +53172,7 @@ paths: - *89 - *17 - *19 - - &411 + - &413 name: sort description: The property by which to sort the results. in: query @@ -53018,7 +53183,7 @@ paths: - created_at default: created_at - *112 - - &412 + - &414 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -53029,7 +53194,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &413 + - &415 name: repository description: The name of the repository to use to filter the results. in: query @@ -53037,7 +53202,7 @@ paths: schema: type: string example: Hello-World - - &414 + - &416 name: permission description: The permission to use to filter the results. in: query @@ -53045,7 +53210,7 @@ paths: schema: type: string example: issues_read - - &415 + - &417 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) @@ -53055,7 +53220,7 @@ paths: schema: type: string format: date-time - - &416 + - &418 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) @@ -53065,7 +53230,7 @@ paths: schema: type: string format: date-time - - &417 + - &419 name: token_id description: The ID of the token in: query @@ -53376,9 +53541,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -53404,14 +53569,14 @@ paths: - *89 - *17 - *19 - - *411 - - *112 - - *412 - *413 + - *112 - *414 - *415 - *416 - *417 + - *418 + - *419 responses: '500': *40 '422': *15 @@ -53691,9 +53856,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -53735,7 +53900,7 @@ paths: type: integer configurations: type: array - items: &418 + items: &420 title: Organization private registry description: Private registry configuration for an organization type: object @@ -54206,7 +54371,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &419 + org-private-registry-with-selected-visibility: &421 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -54296,15 +54461,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *89 - - *298 + - *300 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *418 + schema: *420 examples: - default: *419 + default: *421 '404': *6 x-github: githubCloudOnly: false @@ -54327,7 +54492,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *89 - - *298 + - *300 requestBody: required: true content: @@ -54504,7 +54669,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *89 - - *298 + - *300 responses: '204': description: Response @@ -54544,7 +54709,7 @@ paths: application/json: schema: type: array - items: &420 + items: &422 title: Projects v2 Project description: A projects v2 project type: object @@ -54614,7 +54779,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &931 + properties: &933 id: type: number description: The unique identifier of the status update. @@ -54662,7 +54827,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &932 + required: &934 - id - node_id - created_at @@ -54687,7 +54852,7 @@ paths: - deleted_at - deleted_by examples: - default: &421 + default: &423 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -54790,7 +54955,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &422 + - &424 name: project_number description: The project's number. in: path @@ -54803,9 +54968,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 headers: Link: *47 '304': *37 @@ -54828,7 +54993,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *89 - - *422 + - *424 requestBody: required: true description: Details of the draft item to create in the project. @@ -54862,7 +55027,7 @@ paths: description: Response content: application/json: - schema: &428 + schema: &430 title: Projects v2 Item description: An item belonging to a project type: object @@ -54875,8 +55040,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *227 - - &599 + - *229 + - &601 title: Pull Request Simple description: Pull Request Simple type: object @@ -54982,8 +55147,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 nullable: true active_lock_reason: type: string @@ -55026,7 +55191,7 @@ paths: items: *4 requested_teams: type: array - items: *317 + items: *319 head: type: object properties: @@ -55076,7 +55241,7 @@ paths: _links: type: object properties: - comments: &425 + comments: &427 title: Link description: Hypermedia Link type: object @@ -55085,13 +55250,13 @@ paths: type: string required: - href - commits: *425 - statuses: *425 - html: *425 - issue: *425 - review_comments: *425 - review_comment: *425 - self: *425 + commits: *427 + statuses: *427 + html: *427 + issue: *427 + review_comments: *427 + review_comment: *427 + self: *427 required: - comments - commits @@ -55101,8 +55266,8 @@ paths: - review_comments - review_comment - self - author_association: *224 - auto_merge: &721 + author_association: *226 + auto_merge: &723 title: Auto merge description: The status of auto merging a pull request. type: object @@ -55204,7 +55369,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &427 + content_type: &429 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -55244,7 +55409,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &429 + draft_issue: &431 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -55318,7 +55483,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *422 + - *424 - *89 - *17 - *110 @@ -55330,7 +55495,7 @@ paths: application/json: schema: type: array - items: &426 + items: &428 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -55480,7 +55645,7 @@ paths: - updated_at - project_url examples: - default: &859 + default: &861 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55610,7 +55775,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *422 + - *424 - *89 requestBody: required: true @@ -55657,7 +55822,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &860 + items: &862 type: object properties: name: @@ -55694,7 +55859,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &861 + iteration_configuration: &863 type: object description: The configuration for iteration fields. properties: @@ -55744,7 +55909,7 @@ paths: value: name: Due date data_type: date - single_select_field: &862 + single_select_field: &864 summary: Create a single select field value: name: Priority @@ -55771,7 +55936,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &863 + iteration_field: &865 summary: Create an iteration field value: name: Sprint @@ -55795,9 +55960,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *426 + schema: *428 examples: - text_field: &864 + text_field: &866 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -55806,7 +55971,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: &865 + number_field: &867 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -55815,7 +55980,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: &866 + date_field: &868 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -55824,7 +55989,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: &867 + single_select_field: &869 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55858,7 +56023,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &868 + iteration_field: &870 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -55903,8 +56068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *422 - - &869 + - *424 + - &871 name: field_id description: The unique identifier of the field. in: path @@ -55917,9 +56082,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *428 examples: - default: &870 + default: &872 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55975,7 +56140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *422 + - *424 - *89 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -56008,7 +56173,7 @@ paths: application/json: schema: type: array - items: &430 + items: &432 title: Projects v2 Item description: An item belonging to a project type: object @@ -56024,7 +56189,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: *427 + content_type: *429 content: type: object additionalProperties: true @@ -56067,7 +56232,7 @@ paths: - updated_at - archived_at examples: - default: &431 + default: &433 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -56765,7 +56930,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *89 - - *422 + - *424 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -56835,22 +57000,22 @@ paths: description: Response content: application/json: - schema: *428 + schema: *430 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *429 + value: *431 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *429 + value: *431 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *429 + value: *431 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *429 + value: *431 '304': *37 '403': *29 '401': *25 @@ -56870,9 +57035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *422 + - *424 - *89 - - &432 + - &434 name: item_id description: The unique identifier of the project item. in: path @@ -56898,9 +57063,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *432 examples: - default: *431 + default: *433 headers: Link: *47 '304': *37 @@ -56921,9 +57086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *422 + - *424 - *89 - - *432 + - *434 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -56993,13 +57158,13 @@ paths: description: Response content: application/json: - schema: *430 + schema: *432 examples: - text_field: *431 - number_field: *431 - date_field: *431 - single_select_field: *431 - iteration_field: *431 + text_field: *433 + number_field: *433 + date_field: *433 + single_select_field: *433 + iteration_field: *433 '401': *25 '403': *29 '404': *6 @@ -57019,9 +57184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *422 + - *424 - *89 - - *432 + - *434 responses: '204': description: Response @@ -57045,7 +57210,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *89 - - *422 + - *424 requestBody: required: true content: @@ -57116,7 +57281,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &851 + schema: &853 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -57214,7 +57379,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &433 + value: &435 value: id: 1 number: 1 @@ -57260,10 +57425,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *433 + value: *435 roadmap_view: summary: Response for creating a roadmap view - value: *433 + value: *435 '304': *37 '403': *29 '401': *25 @@ -57291,9 +57456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-project-view parameters: - - *422 + - *424 - *89 - - &871 + - &873 name: view_number description: The number that identifies the project view. in: path @@ -57325,9 +57490,9 @@ paths: application/json: schema: type: array - items: *430 + items: *432 examples: - default: *431 + default: *433 headers: Link: *47 '304': *37 @@ -57360,9 +57525,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *160 + default: *162 '403': *29 '404': *6 x-github: @@ -57400,7 +57565,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *159 + items: *161 minItems: 1 maxItems: 100 required: @@ -57430,9 +57595,9 @@ paths: application/json: schema: type: array - items: *159 + items: *161 examples: - default: *160 + default: *162 '403': *29 '404': *6 x-github: @@ -57454,15 +57619,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *89 - - *156 + - *158 responses: '200': description: Response content: application/json: - schema: *159 + schema: *161 examples: - default: *161 + default: *163 '403': *29 '404': *6 x-github: @@ -57486,12 +57651,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *89 - - *156 + - *158 requestBody: required: true content: application/json: - schema: *434 + schema: *436 examples: default: value: @@ -57507,9 +57672,9 @@ paths: description: Response content: application/json: - schema: *159 + schema: *161 examples: - default: *161 + default: *163 '403': *29 '404': *6 x-github: @@ -57533,7 +57698,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *89 - - *156 + - *158 responses: '204': *130 '403': *29 @@ -57594,7 +57759,7 @@ paths: example: octocat/Hello-World properties: type: array - items: *158 + items: *160 description: List of custom property names and associated values required: - repository_id @@ -57663,7 +57828,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *158 + items: *160 required: - repository_names - properties @@ -57716,7 +57881,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -57736,7 +57901,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response if user is a public member @@ -57761,7 +57926,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -57783,7 +57948,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - *89 - - *146 + - *148 responses: '204': description: Response @@ -57854,9 +58019,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -58059,7 +58224,7 @@ paths: description: Response content: application/json: - schema: &483 + schema: &485 title: Full Repository description: Full Repository type: object @@ -58347,8 +58512,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *435 - required: *436 + properties: *437 + required: *438 nullable: true temp_clone_token: type: string @@ -58435,8 +58600,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true organization: title: Simple User @@ -58463,7 +58628,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &604 + properties: &606 url: type: string format: uri @@ -58479,12 +58644,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &605 + required: &607 - url - key - name - html_url - security_and_analysis: *437 + security_and_analysis: *439 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -58568,7 +58733,7 @@ paths: - network_count - subscribers_count examples: - default: &485 + default: &487 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59094,9 +59259,9 @@ paths: application/json: schema: type: array - items: *438 + items: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59121,7 +59286,7 @@ paths: - *89 - *17 - *19 - - &743 + - &745 name: targets description: | A comma-separated list of rule targets to filter by. @@ -59139,7 +59304,7 @@ paths: application/json: schema: type: array - items: *193 + items: *195 examples: default: value: @@ -59207,22 +59372,20 @@ paths: - push - repository default: branch - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 - conditions: *440 + items: *173 + conditions: *442 rules: type: array description: An array of rules within the ruleset. - items: &442 + items: &444 title: Repository Rule type: object description: A repository rule. oneOf: - - *172 - - *173 - *174 - *175 - *176 @@ -59242,6 +59405,8 @@ paths: - *190 - *191 - *192 + - *193 + - *194 required: - name - enforcement @@ -59279,9 +59444,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: &441 + default: &443 value: id: 21 name: super cool ruleset @@ -59337,7 +59502,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &745 + - &747 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 @@ -59347,16 +59512,16 @@ paths: schema: type: string x-multi-segment: true - - *314 + - *316 - *107 - - &746 + - &748 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 - - &747 + - &749 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -59376,7 +59541,7 @@ paths: description: Response content: application/json: - schema: &748 + schema: &750 title: Rule Suites description: Response type: array @@ -59431,7 +59596,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &749 + default: &751 value: - id: 21 actor_id: 12 @@ -59475,7 +59640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &750 + - &752 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -59491,7 +59656,7 @@ paths: description: Response content: application/json: - schema: &751 + schema: &753 title: Rule Suite description: Response type: object @@ -59590,7 +59755,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &752 + default: &754 value: id: 21 actor_id: 12 @@ -59663,9 +59828,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *441 + default: *443 '404': *6 '500': *40 put: @@ -59709,16 +59874,16 @@ paths: - tag - push - repository - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 - conditions: *440 + items: *173 + conditions: *442 rules: description: An array of rules within the ruleset. type: array - items: *442 + items: *444 examples: default: value: @@ -59753,9 +59918,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *441 + default: *443 '404': *6 '422': *15 '500': *40 @@ -59813,9 +59978,9 @@ paths: application/json: schema: type: array - items: *197 + items: *199 examples: - default: *443 + default: *445 '404': *6 '500': *40 x-github: @@ -59852,7 +60017,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *446 examples: default: value: @@ -59915,18 +60080,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *445 - - *446 - *447 - *448 - *449 - *450 - *451 - *452 + - *453 + - *454 - *112 - *19 - *17 - - &754 + - &756 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -59936,7 +60101,7 @@ paths: required: false schema: type: string - - &755 + - &757 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -59946,10 +60111,10 @@ paths: required: false schema: type: string - - *453 - - *454 - *455 - *456 + - *457 + - *458 responses: '200': description: Response @@ -59957,13 +60122,13 @@ paths: application/json: schema: type: array - items: *457 + items: *459 examples: - default: *458 + default: *460 headers: Link: *47 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59994,9 +60159,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '403': *29 '404': *6 patch: @@ -60025,7 +60190,7 @@ paths: schema: type: object properties: - pattern_config_version: *200 + pattern_config_version: *202 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -60051,7 +60216,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *200 + custom_pattern_version: *202 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -60149,7 +60314,7 @@ paths: application/json: schema: type: array - items: &776 + items: &778 description: A repository security advisory. type: object properties: @@ -60369,7 +60534,7 @@ paths: login: type: string description: The username of the user credited. - type: *461 + type: *463 credits_detailed: type: array nullable: true @@ -60379,7 +60544,7 @@ paths: type: object properties: user: *4 - type: *461 + type: *463 state: type: string description: The state of the user's acceptance of the @@ -60403,7 +60568,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *317 + items: *319 private_fork: readOnly: true nullable: true @@ -60440,7 +60605,7 @@ paths: - private_fork additionalProperties: false examples: - default: &777 + default: &779 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -60827,7 +60992,7 @@ paths: application/json: schema: type: array - items: *462 + items: *464 examples: default: value: @@ -60868,7 +61033,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *89 - - *220 + - *222 responses: '204': description: Response @@ -60894,7 +61059,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *89 - - *220 + - *222 responses: '204': description: Response @@ -60926,7 +61091,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *89 - - *463 + - *465 - *17 - *19 responses: @@ -60934,9 +61099,9 @@ paths: description: Success content: application/json: - schema: *464 + schema: *466 examples: - default: *465 + default: *467 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -61080,9 +61245,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: *302 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61151,7 +61316,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: Response @@ -61174,7 +61339,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *282 + - *284 responses: '204': description: Response @@ -61215,9 +61380,9 @@ paths: type: integer network_configurations: type: array - items: *151 + items: *153 examples: - default: *466 + default: *468 headers: Link: *47 x-github: @@ -61294,9 +61459,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61317,15 +61482,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *89 - - *153 + - *155 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 headers: Link: *47 x-github: @@ -61347,7 +61512,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *89 - - *153 + - *155 requestBody: required: true content: @@ -61400,9 +61565,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *152 + default: *154 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61422,7 +61587,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *89 - - *153 + - *155 responses: '204': description: Response @@ -61446,15 +61611,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *89 - - *467 + - *469 responses: '200': description: Response content: application/json: - schema: *468 + schema: *470 examples: - default: *469 + default: *471 headers: Link: *47 x-github: @@ -61492,7 +61657,7 @@ paths: description: Response content: application/json: - schema: &480 + schema: &482 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -61538,7 +61703,7 @@ paths: type: string nullable: true examples: - default: &481 + default: &483 value: groups: - group_id: '123' @@ -61584,7 +61749,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *89 - - *220 + - *222 - 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`). @@ -61616,13 +61781,13 @@ paths: application/json: schema: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '500': *40 '403': *29 '404': *6 - '422': *213 + '422': *215 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61662,9 +61827,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 headers: Link: *47 '403': *29 @@ -61758,7 +61923,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &472 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -61821,8 +61986,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *401 - required: *402 + properties: *403 + required: *404 nullable: true members_count: type: integer @@ -62085,7 +62250,7 @@ paths: - repos_count - organization examples: - default: &471 + default: &473 value: id: 1 node_id: MDQ6VGVhbTE= @@ -62156,15 +62321,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *89 - - *220 + - *222 responses: '200': description: Response content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '404': *6 x-github: githubCloudOnly: false @@ -62186,7 +62351,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *89 - - *220 + - *222 requestBody: required: false content: @@ -62248,16 +62413,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '201': description: Response content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '404': *6 '422': *15 '403': *29 @@ -62283,11 +62448,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *89 - - *220 + - *222 responses: '204': description: Response - '422': &474 + '422': &476 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -62310,16 +62475,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *89 - - *220 + - *222 responses: '200': description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 - '422': *474 + default: *475 + '422': *476 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -62339,7 +62504,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *89 - - *220 + - *222 requestBody: required: true content: @@ -62362,10 +62527,10 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *476 - '422': *474 + default: *478 + '422': *476 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62385,11 +62550,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *89 - - *220 + - *222 responses: '204': description: Response - '422': *474 + '422': *476 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62411,7 +62576,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *89 - - *220 + - *222 - *17 - *19 responses: @@ -62421,12 +62586,12 @@ paths: application/json: schema: type: array - items: *382 + items: *384 examples: - default: *383 + default: *385 headers: Link: *47 - '422': *474 + '422': *476 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62447,7 +62612,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *89 - - *220 + - *222 - name: role description: Filters members returned by their role in the team. in: query @@ -62470,7 +62635,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -62501,14 +62666,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *89 - - *220 - - *146 + - *222 + - *148 responses: '200': description: Response content: application/json: - schema: &477 + schema: &479 title: Team Membership description: Team Membership type: object @@ -62535,7 +62700,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &818 + response-if-user-is-a-team-maintainer: &820 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -62572,8 +62737,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *89 - - *220 - - *146 + - *222 + - *148 requestBody: required: false content: @@ -62598,9 +62763,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *479 examples: - response-if-users-membership-with-team-is-now-pending: &819 + response-if-users-membership-with-team-is-now-pending: &821 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -62636,8 +62801,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *89 - - *220 - - *146 + - *222 + - *148 responses: '204': description: Response @@ -62664,7 +62829,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *89 - - *220 + - *222 - *17 - *19 responses: @@ -62674,9 +62839,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -62706,15 +62871,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *89 - - *220 - - *478 - - *479 + - *222 + - *480 + - *481 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &820 + schema: &822 title: Team Repository description: A team's access to a repository. type: object @@ -62737,8 +62902,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true forks: type: integer @@ -63284,9 +63449,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *89 - - *220 - - *478 - - *479 + - *222 + - *480 + - *481 requestBody: required: false content: @@ -63332,9 +63497,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *89 - - *220 - - *478 - - *479 + - *222 + - *480 + - *481 responses: '204': description: Response @@ -63361,16 +63526,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *89 - - *220 + - *222 responses: '200': description: Response content: application/json: - schema: *480 + schema: *482 examples: - default: *481 - '422': *474 + default: *483 + '422': *476 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63393,7 +63558,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *89 - - *220 + - *222 requestBody: required: true content: @@ -63436,7 +63601,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -63448,7 +63613,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *474 + '422': *476 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63470,7 +63635,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *89 - - *220 + - *222 - *17 - *19 responses: @@ -63480,9 +63645,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - response-if-child-teams-exist: &821 + response-if-child-teams-exist: &823 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -63636,7 +63801,7 @@ paths: resources: type: object properties: - core: &482 + core: &484 title: Rate Limit type: object properties: @@ -63653,21 +63818,21 @@ paths: - remaining - reset - used - graphql: *482 - search: *482 - code_search: *482 - source_import: *482 - integration_manifest: *482 - code_scanning_upload: *482 - actions_runner_registration: *482 - scim: *482 - dependency_snapshots: *482 - dependency_sbom: *482 - code_scanning_autofix: *482 + graphql: *484 + search: *484 + code_search: *484 + source_import: *484 + integration_manifest: *484 + code_scanning_upload: *484 + actions_runner_registration: *484 + scim: *484 + dependency_snapshots: *484 + dependency_sbom: *484 + code_scanning_autofix: *484 required: - core - search - rate: *482 + rate: *484 required: - rate - resources @@ -63772,14 +63937,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *483 + schema: *485 examples: default-response: summary: Default response @@ -64288,7 +64453,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *484 + '301': *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64306,8 +64471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -64615,10 +64780,10 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *485 - '307': &486 + default: *487 + '307': &488 description: Temporary Redirect content: application/json: @@ -64647,8 +64812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -64670,7 +64835,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *486 + '307': *488 '404': *6 '409': *121 x-github: @@ -64694,11 +64859,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 - - &503 + - &505 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -64721,7 +64886,7 @@ paths: type: integer artifacts: type: array - items: &487 + items: &489 title: Artifact description: An artifact type: object @@ -64799,7 +64964,7 @@ paths: - expires_at - updated_at examples: - default: &504 + default: &506 value: total_count: 2 artifacts: @@ -64860,9 +65025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *478 - - *479 - - &488 + - *480 + - *481 + - &490 name: artifact_id description: The unique identifier of the artifact. in: path @@ -64874,7 +65039,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *489 examples: default: value: @@ -64912,9 +65077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *478 - - *479 - - *488 + - *480 + - *481 + - *490 responses: '204': description: Response @@ -64938,9 +65103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *478 - - *479 - - *488 + - *480 + - *481 + - *490 - name: archive_format in: path required: true @@ -64950,11 +65115,11 @@ paths: '302': description: Response headers: - Location: &623 + Location: &625 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': &671 + '410': &673 description: Gone content: application/json: @@ -64979,14 +65144,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: &489 + schema: &491 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -65019,13 +65184,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: application/json: - schema: *489 + schema: *491 examples: selected_actions: *44 responses: @@ -65054,14 +65219,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: &490 + schema: &492 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -65094,13 +65259,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: application/json: - schema: *490 + schema: *492 examples: selected_actions: *46 responses: @@ -65131,14 +65296,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: default: value: @@ -65164,11 +65329,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 - - &492 + - &494 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 @@ -65202,7 +65367,7 @@ paths: description: Response content: application/json: - schema: &493 + schema: &495 title: Repository actions caches description: Repository actions caches type: object @@ -65244,7 +65409,7 @@ paths: - total_count - actions_caches examples: - default: &494 + default: &496 value: total_count: 1 actions_caches: @@ -65276,23 +65441,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *478 - - *479 + - *480 + - *481 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *492 + - *494 responses: '200': description: Response content: application/json: - schema: *493 + schema: *495 examples: - default: *494 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65312,8 +65477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *478 - - *479 + - *480 + - *481 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -65344,9 +65509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *478 - - *479 - - &495 + - *480 + - *481 + - &497 name: job_id description: The unique identifier of the job. in: path @@ -65358,7 +65523,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &509 title: Job description: Information of a job execution in a workflow run type: object @@ -65665,9 +65830,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *478 - - *479 - - *495 + - *480 + - *481 + - *497 responses: '302': description: Response @@ -65695,9 +65860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *478 - - *479 - - *495 + - *480 + - *481 + - *497 requestBody: required: false content: @@ -65718,7 +65883,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -65742,8 +65907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Status response @@ -65793,8 +65958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -65828,7 +65993,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -65857,8 +66022,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -65876,7 +66041,7 @@ paths: type: integer secrets: type: array - items: &509 + items: &511 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -65896,7 +66061,7 @@ paths: - created_at - updated_at examples: - default: &510 + default: &512 value: total_count: 2 secrets: @@ -65929,9 +66094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *478 - - *479 - - *496 + - *480 + - *481 + - *498 - *19 responses: '200': @@ -65948,7 +66113,7 @@ paths: type: integer variables: type: array - items: &513 + items: &515 title: Actions Variable type: object properties: @@ -65978,7 +66143,7 @@ paths: - created_at - updated_at examples: - default: &514 + default: &516 value: total_count: 2 variables: @@ -66011,8 +66176,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -66021,11 +66186,11 @@ paths: schema: type: object properties: - enabled: &497 + enabled: &499 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *62 - selected_actions_url: *275 + selected_actions_url: *277 sha_pinning_required: *63 required: - enabled @@ -66056,8 +66221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -66068,7 +66233,7 @@ paths: schema: type: object properties: - enabled: *497 + enabled: *499 allowed_actions: *62 sha_pinning_required: *63 required: @@ -66101,14 +66266,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: &498 + schema: &500 type: object properties: access_level: @@ -66126,7 +66291,7 @@ paths: required: - access_level examples: - default: &499 + default: &501 value: access_level: organization x-github: @@ -66151,15 +66316,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: application/json: - schema: *498 + schema: *500 examples: - default: *499 + default: *501 responses: '204': description: Response @@ -66183,14 +66348,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *277 + schema: *279 examples: default: value: @@ -66214,8 +66379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Empty response for successful settings update @@ -66225,7 +66390,7 @@ paths: required: true content: application/json: - schema: *278 + schema: *280 examples: default: summary: Set retention days @@ -66249,8 +66414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -66258,7 +66423,7 @@ paths: application/json: schema: *64 examples: - default: *279 + default: *281 '404': *6 x-github: enabledForGitHubApps: true @@ -66277,8 +66442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -66312,14 +66477,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *280 + schema: *282 examples: default: *65 '403': *29 @@ -66341,13 +66506,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: application/json: - schema: *281 + schema: *283 examples: default: *65 responses: @@ -66373,8 +66538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -66405,8 +66570,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -66438,14 +66603,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *284 + schema: *286 examples: default: *71 x-github: @@ -66468,8 +66633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Success response @@ -66480,7 +66645,7 @@ paths: required: true content: application/json: - schema: *285 + schema: *287 examples: default: *71 x-github: @@ -66509,8 +66674,8 @@ paths: in: query schema: type: string - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -66554,8 +66719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -66563,9 +66728,9 @@ paths: application/json: schema: type: array - items: *289 + items: *291 examples: - default: *290 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66587,8 +66752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -66631,7 +66796,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *293 '404': *6 '422': *7 '409': *121 @@ -66662,8 +66827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '201': description: Response @@ -66671,7 +66836,7 @@ paths: application/json: schema: *81 examples: - default: *292 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66699,8 +66864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '201': description: Response @@ -66708,7 +66873,7 @@ paths: application/json: schema: *81 examples: - default: *293 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66730,8 +66895,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 responses: '200': @@ -66740,7 +66905,7 @@ paths: application/json: schema: *78 examples: - default: *294 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66761,8 +66926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 responses: '204': @@ -66789,8 +66954,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 responses: '200': *83 @@ -66815,8 +66980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 requestBody: required: true @@ -66865,8 +67030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 requestBody: required: true @@ -66916,11 +67081,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 responses: - '200': *295 + '200': *297 '404': *6 x-github: githubCloudOnly: false @@ -66947,10 +67112,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *77 - - *296 + - *298 responses: '200': *83 '404': *6 @@ -66978,9 +67143,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *478 - - *479 - - &517 + - *480 + - *481 + - &519 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. @@ -66988,7 +67153,7 @@ paths: required: false schema: type: string - - &518 + - &520 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -66996,7 +67161,7 @@ paths: required: false schema: type: string - - &519 + - &521 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -67005,7 +67170,7 @@ paths: required: false schema: type: string - - &520 + - &522 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 @@ -67032,7 +67197,7 @@ paths: - pending - *17 - *19 - - &521 + - &523 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -67041,7 +67206,7 @@ paths: schema: type: string format: date-time - - &500 + - &502 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -67050,13 +67215,13 @@ paths: schema: type: boolean default: false - - &522 + - &524 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &523 + - &525 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -67079,7 +67244,7 @@ paths: type: integer workflow_runs: type: array - items: &501 + items: &503 title: Workflow Run description: An invocation of a workflow type: object @@ -67174,7 +67339,7 @@ paths: that triggered the run. type: array nullable: true - items: *232 + items: *234 created_at: type: string format: date-time @@ -67227,7 +67392,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &545 + properties: &547 id: type: string description: SHA for the commit @@ -67278,7 +67443,7 @@ paths: - name - email nullable: true - required: &546 + required: &548 - id - tree_id - message @@ -67286,8 +67451,8 @@ paths: - author - committer nullable: true - repository: *288 - head_repository: *288 + repository: *290 + head_repository: *290 head_repository_id: type: integer example: 5 @@ -67325,7 +67490,7 @@ paths: - workflow_url - pull_requests examples: - default: &524 + default: &526 value: total_count: 1 workflow_runs: @@ -67561,24 +67726,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *478 - - *479 - - &502 + - *480 + - *481 + - &504 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *500 + - *502 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &505 + default: &507 value: id: 30433642 name: Build @@ -67819,9 +67984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '204': description: Response @@ -67844,9 +68009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '200': description: Response @@ -67965,15 +68130,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '201': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -68000,12 +68165,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 - *17 - *19 - - *503 + - *505 - *112 responses: '200': @@ -68022,9 +68187,9 @@ paths: type: integer artifacts: type: array - items: *487 + items: *489 examples: - default: *504 + default: *506 headers: Link: *47 x-github: @@ -68048,25 +68213,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *478 - - *479 - - *502 - - &506 + - *480 + - *481 + - *504 + - &508 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *500 + - *502 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *505 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68089,10 +68254,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *478 - - *479 - - *502 - - *506 + - *480 + - *481 + - *504 + - *508 - *17 - *19 responses: @@ -68110,9 +68275,9 @@ paths: type: integer jobs: type: array - items: *507 + items: *509 examples: - default: &508 + default: &510 value: total_count: 1 jobs: @@ -68225,10 +68390,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *478 - - *479 - - *502 - - *506 + - *480 + - *481 + - *504 + - *508 responses: '302': description: Response @@ -68256,15 +68421,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '202': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -68291,9 +68456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 requestBody: required: true content: @@ -68360,15 +68525,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '202': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -68395,9 +68560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 - 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 @@ -68427,9 +68592,9 @@ paths: type: integer jobs: type: array - items: *507 + items: *509 examples: - default: *508 + default: *510 headers: Link: *47 x-github: @@ -68454,9 +68619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '302': description: Response @@ -68483,9 +68648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '204': description: Response @@ -68512,9 +68677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '200': description: Response @@ -68574,7 +68739,7 @@ paths: items: type: object properties: - type: &638 + type: &640 type: string description: The type of reviewer. enum: @@ -68584,7 +68749,7 @@ paths: reviewer: anyOf: - *4 - - *317 + - *319 required: - environment - wait_timer @@ -68659,9 +68824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 requestBody: required: true content: @@ -68708,12 +68873,12 @@ paths: application/json: schema: type: array - items: &625 + items: &627 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &889 + properties: &891 url: type: string format: uri @@ -68796,9 +68961,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 - required: &890 + properties: *224 + required: *225 + required: &892 - id - node_id - sha @@ -68814,7 +68979,7 @@ paths: - created_at - updated_at examples: - default: &626 + default: &628 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -68870,9 +69035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 requestBody: required: false content: @@ -68893,7 +69058,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -68916,9 +69081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 requestBody: required: false content: @@ -68939,7 +69104,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -68972,9 +69137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *478 - - *479 - - *502 + - *480 + - *481 + - *504 responses: '200': description: Response @@ -69111,8 +69276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -69130,9 +69295,9 @@ paths: type: integer secrets: type: array - items: *509 + items: *511 examples: - default: *510 + default: *512 headers: Link: *47 x-github: @@ -69157,16 +69322,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69188,17 +69353,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '200': description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: &651 + default: &653 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -69224,9 +69389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 requestBody: required: true content: @@ -69257,7 +69422,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -69283,9 +69448,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '204': description: Response @@ -69310,9 +69475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *478 - - *479 - - *496 + - *480 + - *481 + - *498 - *19 responses: '200': @@ -69329,9 +69494,9 @@ paths: type: integer variables: type: array - items: *513 + items: *515 examples: - default: *514 + default: *516 headers: Link: *47 x-github: @@ -69354,8 +69519,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -69382,7 +69547,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -69407,17 +69572,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *478 - - *479 - - *301 + - *480 + - *481 + - *303 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: &652 + default: &654 value: name: USERNAME value: octocat @@ -69443,9 +69608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *478 - - *479 - - *301 + - *480 + - *481 + - *303 requestBody: required: true content: @@ -69487,9 +69652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *478 - - *479 - - *301 + - *480 + - *481 + - *303 responses: '204': description: Response @@ -69514,8 +69679,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -69533,7 +69698,7 @@ paths: type: integer workflows: type: array - items: &515 + items: &517 title: Workflow description: A GitHub Actions workflow type: object @@ -69640,9 +69805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *478 - - *479 - - &516 + - *480 + - *481 + - &518 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -69657,7 +69822,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *517 examples: default: value: @@ -69690,9 +69855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *478 - - *479 - - *516 + - *480 + - *481 + - *518 responses: '204': description: Response @@ -69717,9 +69882,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *478 - - *479 - - *516 + - *480 + - *481 + - *518 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -69806,9 +69971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *478 - - *479 - - *516 + - *480 + - *481 + - *518 responses: '204': description: Response @@ -69835,19 +70000,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *478 - - *479 - - *516 - - *517 + - *480 + - *481 - *518 - *519 - *520 - - *17 - - *19 - *521 - - *500 - *522 + - *17 + - *19 - *523 + - *502 + - *524 + - *525 responses: '200': description: Response @@ -69863,9 +70028,9 @@ paths: type: integer workflow_runs: type: array - items: *501 + items: *503 examples: - default: *524 + default: *526 headers: Link: *47 x-github: @@ -69898,9 +70063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *478 - - *479 - - *516 + - *480 + - *481 + - *518 responses: '200': description: Response @@ -69961,8 +70126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *478 - - *479 + - *480 + - *481 - *112 - *17 - *110 @@ -70126,8 +70291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -70139,7 +70304,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 '404': *6 @@ -70164,8 +70329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *478 - - *479 + - *480 + - *481 - name: assignee in: path required: true @@ -70201,8 +70366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -70312,8 +70477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *110 - *111 @@ -70370,7 +70535,7 @@ paths: initiator: type: string examples: - default: *525 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70390,8 +70555,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -70399,7 +70564,7 @@ paths: application/json: schema: type: array - items: &526 + items: &528 title: Autolink reference description: An autolink reference. type: object @@ -70453,8 +70618,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -70493,9 +70658,9 @@ paths: description: response content: application/json: - schema: *526 + schema: *528 examples: - default: &527 + default: &529 value: id: 1 key_prefix: TICKET- @@ -70526,9 +70691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *478 - - *479 - - &528 + - *480 + - *481 + - &530 name: autolink_id description: The unique identifier of the autolink. in: path @@ -70540,9 +70705,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: - default: *527 + default: *529 '404': *6 x-github: githubCloudOnly: false @@ -70562,9 +70727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *478 - - *479 - - *528 + - *480 + - *481 + - *530 responses: '204': description: Response @@ -70588,8 +70753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response if Dependabot is enabled @@ -70637,8 +70802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -70659,8 +70824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -70680,8 +70845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *478 - - *479 + - *480 + - *481 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -70719,7 +70884,7 @@ paths: - url protected: type: boolean - protection: &530 + protection: &532 title: Branch Protection description: Branch Protection type: object @@ -70761,7 +70926,7 @@ paths: required: - contexts - checks - enforce_admins: &533 + enforce_admins: &535 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -70776,7 +70941,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &535 + required_pull_request_reviews: &537 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -70797,7 +70962,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *317 + items: *319 apps: description: The list of apps with review dismissal access. @@ -70826,7 +70991,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *317 + items: *319 apps: description: The list of apps allowed to bypass pull request requirements. @@ -70852,7 +71017,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &532 + restrictions: &534 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -70915,7 +71080,7 @@ paths: type: string teams: type: array - items: *317 + items: *319 apps: type: array items: @@ -71129,9 +71294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *478 - - *479 - - &531 + - *480 + - *481 + - &533 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -71145,14 +71310,14 @@ paths: description: Response content: application/json: - schema: &541 + schema: &543 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &595 + commit: &597 title: Commit description: Commit type: object @@ -71186,7 +71351,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &529 + properties: &531 name: type: string example: '"Chris Wanstrath"' @@ -71202,7 +71367,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *529 + properties: *531 nullable: true message: type: string @@ -71223,7 +71388,7 @@ paths: required: - sha - url - verification: &658 + verification: &660 title: Verification type: object properties: @@ -71257,12 +71422,12 @@ paths: nullable: true oneOf: - *4 - - *299 + - *301 committer: nullable: true oneOf: - *4 - - *299 + - *301 parents: type: array items: @@ -71293,7 +71458,7 @@ paths: type: integer files: type: array - items: &608 + items: &610 title: Diff Entry description: Diff Entry type: object @@ -71377,7 +71542,7 @@ paths: - self protected: type: boolean - protection: *530 + protection: *532 protection_url: type: string format: uri @@ -71484,7 +71649,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *484 + '301': *486 '404': *6 x-github: githubCloudOnly: false @@ -71506,15 +71671,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *530 + schema: *532 examples: default: value: @@ -71708,9 +71873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -71965,7 +72130,7 @@ paths: url: type: string format: uri - required_status_checks: &538 + required_status_checks: &540 title: Status Check Policy description: Status Check Policy type: object @@ -72041,7 +72206,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *319 apps: type: array items: *5 @@ -72059,7 +72224,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *319 apps: type: array items: *5 @@ -72117,7 +72282,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *532 + restrictions: *534 required_conversation_resolution: type: object properties: @@ -72229,9 +72394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -72256,17 +72421,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *533 + schema: *535 examples: - default: &534 + default: &536 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -72288,17 +72453,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *533 + schema: *535 examples: - default: *534 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72317,9 +72482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -72344,17 +72509,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: &536 + default: &538 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -72450,9 +72615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -72550,9 +72715,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *537 examples: - default: *536 + default: *538 '422': *15 x-github: githubCloudOnly: false @@ -72573,9 +72738,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -72602,17 +72767,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *533 + schema: *535 examples: - default: &537 + default: &539 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -72635,17 +72800,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *533 + schema: *535 examples: - default: *537 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -72665,9 +72830,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -72692,17 +72857,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *538 + schema: *540 examples: - default: &539 + default: &541 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -72728,9 +72893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -72782,9 +72947,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *540 examples: - default: *539 + default: *541 '404': *6 '422': *15 x-github: @@ -72806,9 +72971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -72832,9 +72997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response @@ -72868,9 +73033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -72937,9 +73102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -73003,9 +73168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: content: application/json: @@ -73071,15 +73236,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response content: application/json: - schema: *532 + schema: *534 examples: default: value: @@ -73170,9 +73335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '204': description: Response @@ -73195,9 +73360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response @@ -73207,7 +73372,7 @@ paths: type: array items: *5 examples: - default: &540 + default: &542 value: - id: 1 slug: octoapp @@ -73264,9 +73429,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73300,7 +73465,7 @@ paths: type: array items: *5 examples: - default: *540 + default: *542 '422': *15 x-github: githubCloudOnly: false @@ -73321,9 +73486,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73357,7 +73522,7 @@ paths: type: array items: *5 examples: - default: *540 + default: *542 '422': *15 x-github: githubCloudOnly: false @@ -73378,9 +73543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73414,7 +73579,7 @@ paths: type: array items: *5 examples: - default: *540 + default: *542 '422': *15 x-github: githubCloudOnly: false @@ -73436,9 +73601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response @@ -73446,9 +73611,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 '404': *6 x-github: githubCloudOnly: false @@ -73468,9 +73633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -73506,9 +73671,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 '422': *15 x-github: githubCloudOnly: false @@ -73529,9 +73694,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: false content: @@ -73567,9 +73732,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 '422': *15 x-github: githubCloudOnly: false @@ -73590,9 +73755,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: content: application/json: @@ -73627,9 +73792,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 '422': *15 x-github: githubCloudOnly: false @@ -73651,9 +73816,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 responses: '200': description: Response @@ -73663,7 +73828,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 '404': *6 x-github: githubCloudOnly: false @@ -73687,9 +73852,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73722,7 +73887,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 '422': *15 x-github: githubCloudOnly: false @@ -73747,9 +73912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73782,7 +73947,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 '422': *15 x-github: githubCloudOnly: false @@ -73807,9 +73972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73842,7 +74007,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 '422': *15 x-github: githubCloudOnly: false @@ -73869,9 +74034,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 requestBody: required: true content: @@ -73893,7 +74058,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *543 examples: default: value: @@ -74007,8 +74172,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *478 - - *479 + - *480 + - *481 - *105 - *106 - *107 @@ -74022,9 +74187,9 @@ paths: application/json: schema: type: array - items: *312 + items: *314 examples: - default: *313 + default: *315 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -74044,8 +74209,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: bypass_request_number in: path required: true @@ -74059,7 +74224,7 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: default: value: @@ -74118,8 +74283,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *478 - - *479 + - *480 + - *481 - *105 - *106 - *107 @@ -74133,9 +74298,9 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: - default: *316 + default: *318 '404': *6 '403': *29 '500': *40 @@ -74159,8 +74324,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *478 - - *479 + - *480 + - *481 - name: bypass_request_number in: path required: true @@ -74172,7 +74337,7 @@ paths: description: A single bypass request. content: application/json: - schema: *315 + schema: *317 examples: default: value: @@ -74230,8 +74395,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *478 - - *479 + - *480 + - *481 - name: bypass_request_number in: path required: true @@ -74302,8 +74467,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *478 - - *479 + - *480 + - *481 - name: bypass_response_id in: path required: true @@ -74336,8 +74501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -74616,7 +74781,7 @@ paths: description: Response content: application/json: - schema: &542 + schema: &544 title: CheckRun description: A check performed on the code of a given code change type: object @@ -74727,16 +74892,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 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: *232 - deployment: &882 + items: *234 + deployment: &884 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74803,8 +74968,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 required: - id - node_id @@ -75016,9 +75181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *478 - - *479 - - &543 + - *480 + - *481 + - &545 name: check_run_id description: The unique identifier of the check run. in: path @@ -75030,9 +75195,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *544 examples: - default: &544 + default: &546 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -75132,9 +75297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *478 - - *479 - - *543 + - *480 + - *481 + - *545 requestBody: required: true content: @@ -75374,9 +75539,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *544 examples: - default: *544 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75396,9 +75561,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *478 - - *479 - - *543 + - *480 + - *481 + - *545 - *17 - *19 responses: @@ -75493,15 +75658,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *478 - - *479 - - *543 + - *480 + - *481 + - *545 responses: '201': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -75539,8 +75704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -75562,7 +75727,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &547 + schema: &549 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -75626,7 +75791,7 @@ paths: nullable: true pull_requests: type: array - items: *232 + items: *234 nullable: true app: title: GitHub app @@ -75637,9 +75802,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 - repository: *288 + properties: *224 + required: *225 + repository: *290 created_at: type: string format: date-time @@ -75648,12 +75813,12 @@ paths: type: string format: date-time nullable: true - head_commit: &915 + head_commit: &917 title: Simple Commit description: A commit. type: object - properties: *545 - required: *546 + properties: *547 + required: *548 latest_check_runs_count: type: integer check_runs_url: @@ -75681,7 +75846,7 @@ paths: - check_runs_url - pull_requests examples: - default: &548 + default: &550 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -75972,9 +76137,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *547 + schema: *549 examples: - default: *548 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75993,8 +76158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -76055,7 +76220,7 @@ paths: required: - app_id - setting - repository: *288 + repository: *290 examples: default: value: @@ -76303,9 +76468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *478 - - *479 - - &549 + - *480 + - *481 + - &551 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -76317,9 +76482,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *549 examples: - default: *548 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76342,17 +76507,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *478 - - *479 - - *549 - - &601 + - *480 + - *481 + - *551 + - &603 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &602 + - &604 name: status description: Returns check runs with the specified `status`. in: query @@ -76391,9 +76556,9 @@ paths: type: integer check_runs: type: array - items: *542 + items: *544 examples: - default: &603 + default: &605 value: total_count: 1 check_runs: @@ -76495,15 +76660,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *478 - - *479 - - *549 + - *480 + - *481 + - *551 responses: '201': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -76530,21 +76695,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *478 - - *479 - - *321 - - *322 + - *480 + - *481 + - *323 + - *324 - *19 - *17 - - &565 + - &567 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: *550 - - &566 + schema: *552 + - &568 name: pr description: The number of the pull request for the results you want to list. in: query @@ -76569,13 +76734,13 @@ paths: be returned. in: query required: false - schema: *323 + schema: *325 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *551 + schema: *553 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -76599,7 +76764,7 @@ paths: updated_at: *139 url: *136 html_url: *137 - instances_url: *552 + instances_url: *554 state: *115 fixed_at: *141 dismissed_by: @@ -76610,11 +76775,11 @@ paths: required: *21 nullable: true dismissed_at: *140 - dismissed_reason: *553 - dismissed_comment: *554 - rule: *555 - tool: *556 - most_recent_instance: *557 + dismissed_reason: *555 + dismissed_comment: *556 + rule: *557 + tool: *558 + most_recent_instance: *559 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -76740,14 +76905,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &558 + '403': &560 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76767,9 +76932,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *478 - - *479 - - &559 + - *480 + - *481 + - &561 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -76783,7 +76948,7 @@ paths: description: Response content: application/json: - schema: &560 + schema: &562 type: object properties: number: *131 @@ -76791,7 +76956,7 @@ paths: updated_at: *139 url: *136 html_url: *137 - instances_url: *552 + instances_url: *554 state: *115 fixed_at: *141 dismissed_by: @@ -76802,8 +76967,8 @@ paths: required: *21 nullable: true dismissed_at: *140 - dismissed_reason: *553 - dismissed_comment: *554 + dismissed_reason: *555 + dismissed_comment: *556 rule: type: object properties: @@ -76857,8 +77022,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *556 - most_recent_instance: *557 + tool: *558 + most_recent_instance: *559 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -76957,9 +77122,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76977,9 +77142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 requestBody: required: true content: @@ -76994,8 +77159,8 @@ paths: enum: - open - dismissed - dismissed_reason: *553 - dismissed_comment: *554 + dismissed_reason: *555 + dismissed_comment: *556 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -77023,7 +77188,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *562 examples: default: value: @@ -77099,14 +77264,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &564 + '403': &566 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': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77126,15 +77291,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 responses: '200': description: Response content: application/json: - schema: &561 + schema: &563 type: object properties: status: @@ -77160,13 +77325,13 @@ paths: - description - started_at examples: - default: &562 + default: &564 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &563 + '400': &565 description: Bad Request content: application/json: @@ -77177,9 +77342,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': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77202,29 +77367,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 responses: '200': description: OK content: application/json: - schema: *561 + schema: *563 examples: - default: *562 + default: *564 '202': description: Accepted content: application/json: - schema: *561 + schema: *563 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *563 + '400': *565 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -77234,7 +77399,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77256,9 +77421,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 requestBody: required: false content: @@ -77303,12 +77468,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *563 - '403': *564 + '400': *565 + '403': *566 '404': *6 '422': description: Unprocessable Entity - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77328,13 +77493,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 - *19 - *17 - - *565 - - *566 + - *567 + - *568 responses: '200': description: Response @@ -77345,10 +77510,10 @@ paths: items: type: object properties: - ref: *550 - analysis_key: *567 - environment: *568 - category: *569 + ref: *552 + analysis_key: *569 + environment: *570 + category: *571 state: type: string description: State of a code scanning alert instance. @@ -77363,7 +77528,7 @@ paths: properties: text: type: string - location: *570 + location: *572 html_url: type: string classifications: @@ -77371,7 +77536,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: *571 + items: *573 examples: default: value: @@ -77408,9 +77573,9 @@ paths: end_column: 50 classifications: - source - '403': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77442,25 +77607,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *478 - - *479 - - *321 - - *322 + - *480 + - *481 + - *323 + - *324 - *19 - *17 - - *566 + - *568 - 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: *550 + schema: *552 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &572 + schema: &574 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -77481,23 +77646,23 @@ paths: application/json: schema: type: array - items: &573 + items: &575 type: object properties: - ref: *550 - commit_sha: &581 + ref: *552 + commit_sha: &583 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: *567 + analysis_key: *569 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *569 + category: *571 error: type: string example: error reading field xyz @@ -77521,8 +77686,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *572 - tool: *556 + sarif_id: *574 + tool: *558 deletable: type: boolean warning: @@ -77583,9 +77748,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77619,8 +77784,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -77633,7 +77798,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *575 examples: response: summary: application/json response @@ -77687,14 +77852,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *558 + '403': *560 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77774,8 +77939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -77828,9 +77993,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': *564 + '403': *566 '404': *6 - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77850,8 +78015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -77859,7 +78024,7 @@ paths: application/json: schema: type: array - items: &574 + items: &576 title: CodeQL Database description: A CodeQL database. type: object @@ -77970,9 +78135,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': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77999,8 +78164,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: language in: path description: The language of the CodeQL database. @@ -78012,7 +78177,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -78044,11 +78209,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': &612 + '302': &614 description: Found - '403': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78068,8 +78233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *478 - - *479 + - *480 + - *481 - name: language in: path description: The language of the CodeQL database. @@ -78079,9 +78244,9 @@ paths: responses: '204': description: Response - '403': *564 + '403': *566 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78107,8 +78272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -78117,7 +78282,7 @@ paths: type: object additionalProperties: false properties: - language: &575 + language: &577 type: string description: The language targeted by the CodeQL query enum: @@ -78197,7 +78362,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &579 + schema: &581 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -78207,7 +78372,7 @@ paths: description: The ID of the variant analysis. controller_repo: *122 actor: *4 - query_language: *575 + query_language: *577 query_pack_url: type: string description: The download url for the query pack. @@ -78254,7 +78419,7 @@ paths: items: type: object properties: - repository: &576 + repository: &578 title: Repository Identifier description: Repository Identifier type: object @@ -78290,7 +78455,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &580 + analysis_status: &582 type: string description: The new status of the CodeQL variant analysis repository task. @@ -78322,7 +78487,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &577 + access_mismatch_repos: &579 type: object properties: repository_count: @@ -78336,7 +78501,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: *576 + items: *578 required: - repository_count - repositories @@ -78358,8 +78523,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *577 - over_limit_repos: *577 + no_codeql_db_repos: *579 + over_limit_repos: *579 required: - access_mismatch_repos - not_found_repos @@ -78375,7 +78540,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &578 + value: &580 summary: Default response value: id: 1 @@ -78521,17 +78686,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *578 + value: *580 repository_lists: summary: Response for a successful variant analysis submission - value: *578 + value: *580 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78552,8 +78717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *478 - - *479 + - *480 + - *481 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -78565,11 +78730,11 @@ paths: description: Response content: application/json: - schema: *579 + schema: *581 examples: - default: *578 + default: *580 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78590,7 +78755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *478 + - *480 - name: repo in: path description: The name of the controller repository. @@ -78625,7 +78790,7 @@ paths: type: object properties: repository: *122 - analysis_status: *580 + analysis_status: *582 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -78729,7 +78894,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78750,8 +78915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -78836,9 +79001,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *558 + '403': *560 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78857,8 +79022,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -78925,7 +79090,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -78950,7 +79115,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *564 + '403': *566 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -78964,7 +79129,7 @@ paths: content: application/json: schema: *3 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79021,8 +79186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -79030,7 +79195,7 @@ paths: schema: type: object properties: - commit_sha: *581 + commit_sha: *583 ref: type: string description: |- @@ -79088,7 +79253,7 @@ paths: schema: type: object properties: - id: *572 + id: *574 url: type: string description: The REST API URL for checking the status of the upload. @@ -79102,11 +79267,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': *564 + '403': *566 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79125,8 +79290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *478 - - *479 + - *480 + - *481 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -79172,10 +79337,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': *558 + '403': *560 '404': description: Not Found if the sarif id does not match any upload - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79197,8 +79362,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -79279,8 +79444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *478 - - *479 + - *480 + - *481 - 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 @@ -79400,8 +79565,8 @@ paths: parameters: - *17 - *19 - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -79417,7 +79582,7 @@ paths: type: integer codespaces: type: array - items: *393 + items: *395 examples: default: value: @@ -79715,8 +79880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -79779,22 +79944,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79818,8 +79983,8 @@ paths: parameters: - *17 - *19 - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -79883,8 +80048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -79919,14 +80084,14 @@ paths: type: integer machines: type: array - items: &827 + items: &829 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *583 - required: *584 + properties: *585 + required: *586 examples: - default: &828 + default: &830 value: total_count: 2 machines: @@ -79966,8 +80131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *478 - - *479 + - *480 + - *481 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -80051,8 +80216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *478 - - *479 + - *480 + - *481 - 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 @@ -80097,7 +80262,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80118,8 +80283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -80137,7 +80302,7 @@ paths: type: integer secrets: type: array - items: &588 + items: &590 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -80157,7 +80322,7 @@ paths: - created_at - updated_at examples: - default: *585 + default: *587 headers: Link: *47 x-github: @@ -80180,16 +80345,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *586 + schema: *588 examples: - default: *587 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -80209,17 +80374,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '200': description: Response content: application/json: - schema: *588 + schema: *590 examples: - default: *589 + default: *591 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80239,9 +80404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 requestBody: required: true content: @@ -80269,7 +80434,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -80293,9 +80458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '204': description: Response @@ -80323,8 +80488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *478 - - *479 + - *480 + - *481 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -80366,7 +80531,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &590 + properties: &592 login: type: string example: octocat @@ -80459,7 +80624,7 @@ paths: user_view_type: type: string example: public - required: &591 + required: &593 - avatar_url - events_url - followers_url @@ -80533,9 +80698,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *478 - - *479 - - *146 + - *480 + - *481 + - *148 responses: '204': description: Response if user is a collaborator @@ -80581,9 +80746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *478 - - *479 - - *146 + - *480 + - *481 + - *148 requestBody: required: false content: @@ -80609,7 +80774,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &670 + schema: &672 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -80620,7 +80785,7 @@ paths: example: 42 type: integer format: int64 - repository: *288 + repository: *290 invitee: title: Simple User description: A GitHub user. @@ -80798,7 +80963,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *263 + schema: *265 '403': *29 x-github: triggersNotification: true @@ -80838,9 +81003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *478 - - *479 - - *146 + - *480 + - *481 + - *148 responses: '204': description: No Content when collaborator was removed from the repository. @@ -80871,9 +81036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *478 - - *479 - - *146 + - *480 + - *481 + - *148 responses: '200': description: if user has admin permissions @@ -80893,8 +81058,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *590 - required: *591 + properties: *592 + required: *593 nullable: true required: - permission @@ -80949,8 +81114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -80960,7 +81125,7 @@ paths: application/json: schema: type: array - items: &592 + items: &594 title: Commit Comment description: Commit Comment type: object @@ -81001,8 +81166,8 @@ paths: updated_at: type: string format: date-time - author_association: *224 - reactions: *225 + author_association: *226 + reactions: *227 required: - url - html_url @@ -81018,7 +81183,7 @@ paths: - created_at - updated_at examples: - default: &597 + default: &599 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81077,17 +81242,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '200': description: Response content: application/json: - schema: *592 + schema: *594 examples: - default: &598 + default: &600 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81144,9 +81309,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -81168,7 +81333,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: default: value: @@ -81219,9 +81384,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '204': description: Response @@ -81242,9 +81407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -81270,7 +81435,7 @@ paths: application/json: schema: type: array - items: &593 + items: &595 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -81313,7 +81478,7 @@ paths: - content - created_at examples: - default: &674 + default: &676 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81358,9 +81523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -81392,9 +81557,9 @@ paths: description: Reaction exists content: application/json: - schema: *593 + schema: *595 examples: - default: &594 + default: &596 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81423,9 +81588,9 @@ paths: description: Reaction created content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '422': *15 x-github: githubCloudOnly: false @@ -81447,10 +81612,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *478 - - *479 - - *243 - - &675 + - *480 + - *481 + - *245 + - &677 name: reaction_id description: The unique identifier of the reaction. in: path @@ -81505,8 +81670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *478 - - *479 + - *480 + - *481 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -81562,9 +81727,9 @@ paths: application/json: schema: type: array - items: *595 + items: *597 examples: - default: &728 + default: &730 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81658,9 +81823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *478 - - *479 - - &596 + - *480 + - *481 + - &598 name: commit_sha description: The SHA of the commit. in: path @@ -81732,9 +81897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *478 - - *479 - - *596 + - *480 + - *481 + - *598 - *17 - *19 responses: @@ -81744,9 +81909,9 @@ paths: application/json: schema: type: array - items: *592 + items: *594 examples: - default: *597 + default: *599 headers: Link: *47 x-github: @@ -81774,9 +81939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *478 - - *479 - - *596 + - *480 + - *481 + - *598 requestBody: required: true content: @@ -81811,9 +81976,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: - default: *598 + default: *600 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81841,9 +82006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *478 - - *479 - - *596 + - *480 + - *481 + - *598 - *17 - *19 responses: @@ -81853,9 +82018,9 @@ paths: application/json: schema: type: array - items: *599 + items: *601 examples: - default: &720 + default: &722 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -82392,11 +82557,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *478 - - *479 + - *480 + - *481 - *19 - *17 - - &600 + - &602 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)" @@ -82411,9 +82576,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *597 examples: - default: &705 + default: &707 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -82501,7 +82666,7 @@ paths: schema: type: string examples: - default: &609 + default: &611 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -82514,7 +82679,7 @@ paths: schema: type: string examples: - default: &610 + default: &612 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -82541,7 +82706,7 @@ paths: '422': *15 '404': *6 '500': *40 - '503': *198 + '503': *200 '409': *121 x-github: githubCloudOnly: false @@ -82567,11 +82732,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *478 - - *479 - - *600 - - *601 + - *480 + - *481 - *602 + - *603 + - *604 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -82605,9 +82770,9 @@ paths: type: integer check_runs: type: array - items: *542 + items: *544 examples: - default: *603 + default: *605 headers: Link: *47 x-github: @@ -82632,9 +82797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *478 - - *479 - - *600 + - *480 + - *481 + - *602 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -82642,7 +82807,7 @@ paths: schema: type: integer example: 1 - - *601 + - *603 - *17 - *19 responses: @@ -82660,7 +82825,7 @@ paths: type: integer check_suites: type: array - items: *547 + items: *549 examples: default: value: @@ -82860,9 +83025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *478 - - *479 - - *600 + - *480 + - *481 + - *602 - *17 - *19 responses: @@ -82929,7 +83094,7 @@ paths: type: string total_count: type: integer - repository: *288 + repository: *290 commit_url: type: string format: uri @@ -83060,9 +83225,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *478 - - *479 - - *600 + - *480 + - *481 + - *602 - *17 - *19 responses: @@ -83072,7 +83237,7 @@ paths: application/json: schema: type: array - items: &781 + items: &783 title: Status description: The status of a commit. type: object @@ -83153,7 +83318,7 @@ paths: site_admin: false headers: Link: *47 - '301': *484 + '301': *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83181,8 +83346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -83211,20 +83376,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *604 - required: *605 + properties: *606 + required: *607 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &606 + properties: &608 url: type: string format: uri html_url: type: string format: uri - required: &607 + required: &609 - url - html_url nullable: true @@ -83232,32 +83397,32 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true contributing: title: Community Health File type: object - properties: *606 - required: *607 + properties: *608 + required: *609 nullable: true readme: title: Community Health File type: object - properties: *606 - required: *607 + properties: *608 + required: *609 nullable: true issue_template: title: Community Health File type: object - properties: *606 - required: *607 + properties: *608 + required: *609 nullable: true pull_request_template: title: Community Health File type: object - properties: *606 - required: *607 + properties: *608 + required: *609 nullable: true required: - code_of_conduct @@ -83384,8 +83549,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *478 - - *479 + - *480 + - *481 - *19 - *17 - name: basehead @@ -83428,8 +83593,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *595 - merge_base_commit: *595 + base_commit: *597 + merge_base_commit: *597 status: type: string enum: @@ -83449,10 +83614,10 @@ paths: example: 6 commits: type: array - items: *595 + items: *597 files: type: array - items: *608 + items: *610 required: - url - html_url @@ -83698,15 +83863,15 @@ paths: schema: type: string examples: - default: *609 + default: *611 application/vnd.github.patch: schema: type: string examples: - default: *610 + default: *612 '404': *6 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83748,8 +83913,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *478 - - *479 + - *480 + - *481 - name: path description: path parameter in: path @@ -83909,7 +84074,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &611 + response-if-content-is-a-file-github-object: &613 summary: Response if content is a file value: type: file @@ -84041,7 +84206,7 @@ paths: - size - type - url - - &733 + - &735 title: Content File description: Content File type: object @@ -84242,7 +84407,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *611 + response-if-content-is-a-file: *613 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -84311,7 +84476,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *612 + '302': *614 '304': *37 x-github: githubCloudOnly: false @@ -84334,8 +84499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *478 - - *479 + - *480 + - *481 - name: path description: path parameter in: path @@ -84428,7 +84593,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &615 title: File Commit description: File Commit type: object @@ -84580,7 +84745,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: example-for-creating-a-file: value: @@ -84634,7 +84799,7 @@ paths: schema: oneOf: - *3 - - &653 + - &655 description: Repository rule violation was detected type: object properties: @@ -84655,7 +84820,7 @@ paths: items: type: object properties: - placeholder_id: &773 + placeholder_id: &775 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84687,8 +84852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *478 - - *479 + - *480 + - *481 - name: path description: path parameter in: path @@ -84749,7 +84914,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: default: value: @@ -84784,7 +84949,7 @@ paths: '422': *15 '404': *6 '409': *121 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84804,8 +84969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *478 - - *479 + - *480 + - *481 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -84928,24 +85093,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *478 - - *479 - - *338 - - *339 + - *480 + - *481 - *340 - *341 - *342 + - *343 + - *344 - 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 - - *343 - - *614 - - *344 - *345 + - *616 - *346 + - *347 + - *348 - *112 - *110 - *111 @@ -84957,7 +85122,7 @@ paths: application/json: schema: type: array - items: &618 + items: &620 type: object description: A Dependabot alert. properties: @@ -85004,7 +85169,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *615 + security_advisory: *617 security_vulnerability: *135 url: *136 html_url: *137 @@ -85035,8 +85200,8 @@ paths: nullable: true maxLength: 280 fixed_at: *141 - auto_dismissed_at: *616 - dismissal_request: *617 + auto_dismissed_at: *618 + dismissal_request: *619 assignees: type: array description: The users assigned to this alert. @@ -85291,9 +85456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *478 - - *479 - - &619 + - *480 + - *481 + - &621 name: alert_number in: path description: |- @@ -85308,7 +85473,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: default: value: @@ -85440,9 +85605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *478 - - *479 - - *619 + - *480 + - *481 + - *621 requestBody: required: true content: @@ -85498,7 +85663,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *620 examples: default: value: @@ -85628,8 +85793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -85647,7 +85812,7 @@ paths: type: integer secrets: type: array - items: &622 + items: &624 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -85700,16 +85865,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *620 + schema: *622 examples: - default: *621 + default: *623 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85729,15 +85894,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '200': description: Response content: application/json: - schema: *622 + schema: *624 examples: default: value: @@ -85763,9 +85928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 requestBody: required: true content: @@ -85793,7 +85958,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -85817,9 +85982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *478 - - *479 - - *298 + - *480 + - *481 + - *300 responses: '204': description: Response @@ -85841,8 +86006,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *478 - - *479 + - *480 + - *481 - 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 @@ -86002,8 +86167,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -86241,8 +86406,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: sbom_uuid in: path required: true @@ -86253,7 +86418,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *623 + Location: *625 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -86274,8 +86439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '201': description: Response @@ -86313,8 +86478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -86389,7 +86554,7 @@ paths: - version - url additionalProperties: false - metadata: &624 + metadata: &626 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86422,7 +86587,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *624 + metadata: *626 resolved: type: object description: A collection of resolved package dependencies. @@ -86435,7 +86600,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *624 + metadata: *626 relationship: type: string description: A notation of whether a dependency is requested @@ -86564,8 +86729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *478 - - *479 + - *480 + - *481 - name: sha description: The SHA recorded at creation time. in: query @@ -86605,9 +86770,9 @@ paths: application/json: schema: type: array - items: *625 + items: *627 examples: - default: *626 + default: *628 headers: Link: *47 x-github: @@ -86673,8 +86838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -86755,7 +86920,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *627 examples: simple-example: summary: Simple example @@ -86828,9 +86993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *478 - - *479 - - &627 + - *480 + - *481 + - &629 name: deployment_id description: deployment_id parameter in: path @@ -86842,7 +87007,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *627 examples: default: value: @@ -86907,9 +87072,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *478 - - *479 - - *627 + - *480 + - *481 + - *629 responses: '204': description: Response @@ -86931,9 +87096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *478 - - *479 - - *627 + - *480 + - *481 + - *629 - *17 - *19 responses: @@ -86943,7 +87108,7 @@ paths: application/json: schema: type: array - items: &628 + items: &630 title: Deployment Status description: The status of a deployment. type: object @@ -87034,8 +87199,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 required: - id - node_id @@ -87104,9 +87269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *478 - - *479 - - *627 + - *480 + - *481 + - *629 requestBody: required: true content: @@ -87181,9 +87346,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: &629 + default: &631 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -87239,9 +87404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *478 - - *479 - - *627 + - *480 + - *481 + - *629 - name: status_id in: path required: true @@ -87252,9 +87417,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *629 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -87281,12 +87446,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 - - *630 - - *631 + - *480 + - *481 - *632 - *633 + - *634 + - *635 - *17 - *19 responses: @@ -87296,9 +87461,9 @@ paths: application/json: schema: type: array - items: *634 + items: *636 examples: - default: *635 + default: *637 '404': *6 '403': *29 '500': *40 @@ -87322,8 +87487,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87335,7 +87500,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *634 + schema: *636 examples: default: value: @@ -87391,8 +87556,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87451,12 +87616,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *478 - - *479 - - *630 - - *631 + - *480 + - *481 - *632 - *633 + - *634 + - *635 - *17 - *19 responses: @@ -87466,9 +87631,9 @@ paths: application/json: schema: type: array - items: *636 + items: *638 examples: - default: *637 + default: *639 '404': *6 '403': *29 '500': *40 @@ -87492,8 +87657,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87505,7 +87670,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *636 + schema: *638 examples: default: value: @@ -87556,8 +87721,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87595,7 +87760,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *636 + schema: *638 examples: default: value: @@ -87646,8 +87811,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87718,8 +87883,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87752,12 +87917,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - *105 - *106 - *107 - - *352 + - *354 - *17 - *19 responses: @@ -87767,9 +87932,9 @@ paths: application/json: schema: type: array - items: *354 + items: *356 examples: - default: *355 + default: *357 '404': *6 '403': *29 '500': *40 @@ -87794,8 +87959,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87807,7 +87972,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *354 + schema: *356 examples: default: value: @@ -87865,8 +88030,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: alert_number in: path required: true @@ -87935,8 +88100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -87993,8 +88158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -88011,7 +88176,7 @@ paths: type: integer environments: type: array - items: &639 + items: &641 title: Environment description: Details of a deployment environment type: object @@ -88063,7 +88228,7 @@ paths: type: type: string example: wait_timer - wait_timer: &641 + wait_timer: &643 type: integer example: 30 description: The amount of time to delay a job after @@ -88100,11 +88265,11 @@ paths: items: type: object properties: - type: *638 + type: *640 reviewer: anyOf: - *4 - - *317 + - *319 required: - id - node_id @@ -88124,7 +88289,7 @@ paths: - id - node_id - type - deployment_branch_policy: &642 + deployment_branch_policy: &644 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -88240,9 +88405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *478 - - *479 - - &640 + - *480 + - *481 + - &642 name: environment_name in: path required: true @@ -88255,9 +88420,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: &643 + default: &645 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -88341,9 +88506,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 requestBody: required: false content: @@ -88352,7 +88517,7 @@ paths: type: object nullable: true properties: - wait_timer: *641 + wait_timer: *643 prevent_self_review: type: boolean example: false @@ -88369,13 +88534,13 @@ paths: items: type: object properties: - type: *638 + type: *640 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *642 + deployment_branch_policy: *644 additionalProperties: false examples: default: @@ -88395,9 +88560,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: *643 + default: *645 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -88421,9 +88586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 responses: '204': description: Default response @@ -88448,9 +88613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 - *17 - *19 responses: @@ -88468,7 +88633,7 @@ paths: example: 2 branch_policies: type: array - items: &644 + items: &646 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -88525,9 +88690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 requestBody: required: true content: @@ -88573,9 +88738,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *646 examples: - example-wildcard: &645 + example-wildcard: &647 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -88617,10 +88782,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *478 - - *479 - - *640 - - &646 + - *480 + - *481 + - *642 + - &648 name: branch_policy_id in: path required: true @@ -88632,9 +88797,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *646 examples: - default: *645 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88653,10 +88818,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *478 - - *479 - - *640 - - *646 + - *480 + - *481 + - *642 + - *648 requestBody: required: true content: @@ -88684,9 +88849,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *646 examples: - default: *645 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88705,10 +88870,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *478 - - *479 - - *640 - - *646 + - *480 + - *481 + - *642 + - *648 responses: '204': description: Response @@ -88733,9 +88898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *640 - - *479 - - *478 + - *642 + - *481 + - *480 responses: '200': description: List of deployment protection rules @@ -88751,7 +88916,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &647 + items: &649 title: Deployment protection rule description: Deployment protection rule type: object @@ -88770,7 +88935,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &648 + app: &650 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -88869,9 +89034,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *640 - - *479 - - *478 + - *642 + - *481 + - *480 requestBody: content: application/json: @@ -88892,9 +89057,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *647 + schema: *649 examples: - default: &649 + default: &651 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -88929,9 +89094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *640 - - *479 - - *478 + - *642 + - *481 + - *480 - *19 - *17 responses: @@ -88950,7 +89115,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *648 + items: *650 examples: default: value: @@ -88985,10 +89150,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *478 - - *479 - - *640 - - &650 + - *480 + - *481 + - *642 + - &652 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -89000,9 +89165,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *649 examples: - default: *649 + default: *651 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89023,10 +89188,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *640 - - *479 - - *478 - - *650 + - *642 + - *481 + - *480 + - *652 responses: '204': description: Response @@ -89052,9 +89217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 - *17 - *19 responses: @@ -89072,9 +89237,9 @@ paths: type: integer secrets: type: array - items: *509 + items: *511 examples: - default: *510 + default: *512 headers: Link: *47 x-github: @@ -89099,17 +89264,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89131,18 +89296,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *478 - - *479 - - *640 - - *298 + - *480 + - *481 + - *642 + - *300 responses: '200': description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: *651 + default: *653 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89164,10 +89329,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *478 - - *479 - - *640 - - *298 + - *480 + - *481 + - *642 + - *300 requestBody: required: true content: @@ -89198,7 +89363,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -89224,10 +89389,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *478 - - *479 - - *640 - - *298 + - *480 + - *481 + - *642 + - *300 responses: '204': description: Default response @@ -89252,10 +89417,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *478 - - *479 - - *640 - - *496 + - *480 + - *481 + - *642 + - *498 - *19 responses: '200': @@ -89272,9 +89437,9 @@ paths: type: integer variables: type: array - items: *513 + items: *515 examples: - default: *514 + default: *516 headers: Link: *47 x-github: @@ -89297,9 +89462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *478 - - *479 - - *640 + - *480 + - *481 + - *642 requestBody: required: true content: @@ -89326,7 +89491,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -89351,18 +89516,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *478 - - *479 - - *640 - - *301 + - *480 + - *481 + - *642 + - *303 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *652 + default: *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89383,10 +89548,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *478 - - *479 - - *301 - - *640 + - *480 + - *481 + - *303 + - *642 requestBody: required: true content: @@ -89428,10 +89593,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *478 - - *479 - - *301 - - *640 + - *480 + - *481 + - *303 + - *642 responses: '204': description: Response @@ -89453,8 +89618,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -89464,7 +89629,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: 200-response: value: @@ -89522,8 +89687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *478 - - *479 + - *480 + - *481 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -89545,7 +89710,7 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: default: value: @@ -89682,8 +89847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -89715,9 +89880,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *485 + default: *487 '400': *14 '422': *15 '403': *29 @@ -89738,8 +89903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -89798,8 +89963,8 @@ paths: application/json: schema: oneOf: - - *263 - - *653 + - *265 + - *655 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89824,8 +89989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *478 - - *479 + - *480 + - *481 - name: file_sha in: path required: true @@ -89924,8 +90089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -90034,7 +90199,7 @@ paths: description: Response content: application/json: - schema: &654 + schema: &656 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -90248,15 +90413,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *478 - - *479 - - *596 + - *480 + - *481 + - *598 responses: '200': description: Response content: application/json: - schema: *654 + schema: *656 examples: default: value: @@ -90312,9 +90477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *478 - - *479 - - &655 + - *480 + - *481 + - &657 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. @@ -90331,7 +90496,7 @@ paths: application/json: schema: type: array - items: &656 + items: &658 title: Git Reference description: Git references within a repository type: object @@ -90406,17 +90571,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *478 - - *479 - - *655 + - *480 + - *481 + - *657 responses: '200': description: Response content: application/json: - schema: *656 + schema: *658 examples: - default: &657 + default: &659 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -90445,8 +90610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -90475,9 +90640,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *658 examples: - default: *657 + default: *659 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -90503,9 +90668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *478 - - *479 - - *655 + - *480 + - *481 + - *657 requestBody: required: true content: @@ -90534,9 +90699,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *658 examples: - default: *657 + default: *659 '422': *15 '409': *121 x-github: @@ -90554,9 +90719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *478 - - *479 - - *655 + - *480 + - *481 + - *657 responses: '204': description: Response @@ -90611,8 +90776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -90679,7 +90844,7 @@ paths: description: Response content: application/json: - schema: &659 + schema: &661 title: Git Tag description: Metadata for a Git tag type: object @@ -90730,7 +90895,7 @@ paths: - sha - type - url - verification: *658 + verification: *660 required: - sha - url @@ -90740,7 +90905,7 @@ paths: - tag - message examples: - default: &660 + default: &662 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -90813,8 +90978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *478 - - *479 + - *480 + - *481 - name: tag_sha in: path required: true @@ -90825,9 +90990,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *661 examples: - default: *660 + default: *662 '404': *6 '409': *121 x-github: @@ -90851,8 +91016,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -90925,7 +91090,7 @@ paths: description: Response content: application/json: - schema: &661 + schema: &663 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -91021,8 +91186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *478 - - *479 + - *480 + - *481 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -91045,7 +91210,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: default-response: summary: Default response @@ -91104,8 +91269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -91115,7 +91280,7 @@ paths: application/json: schema: type: array - items: &662 + items: &664 title: Webhook description: Webhooks for repositories. type: object @@ -91169,7 +91334,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &923 + last_response: &925 title: Hook Response type: object properties: @@ -91243,8 +91408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -91296,9 +91461,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: &663 + default: &665 value: type: Repository id: 12345678 @@ -91346,17 +91511,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 responses: '200': description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: *663 + default: *665 '404': *6 x-github: githubCloudOnly: false @@ -91376,9 +91541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 requestBody: required: true content: @@ -91423,9 +91588,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: *663 + default: *665 '422': *15 '404': *6 x-github: @@ -91446,9 +91611,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 responses: '204': description: Response @@ -91472,9 +91637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 responses: '200': description: Response @@ -91501,9 +91666,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 requestBody: required: false content: @@ -91547,12 +91712,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *478 - - *479 - - *360 - - *17 - - *361 + - *480 + - *481 - *362 + - *17 + - *363 + - *364 responses: '200': description: Response @@ -91560,9 +91725,9 @@ paths: application/json: schema: type: array - items: *363 + items: *365 examples: - default: *364 + default: *366 '400': *14 '422': *15 x-github: @@ -91581,18 +91746,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 - *16 responses: '200': description: Response content: application/json: - schema: *365 + schema: *367 examples: - default: *366 + default: *368 '400': *14 '422': *15 x-github: @@ -91611,9 +91776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 - *16 responses: '202': *39 @@ -91636,9 +91801,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 responses: '204': description: Response @@ -91663,9 +91828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *478 - - *479 - - *360 + - *480 + - *481 + - *362 responses: '204': description: Response @@ -91688,8 +91853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response if immutable releases are enabled @@ -91735,8 +91900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': *130 '409': *121 @@ -91756,8 +91921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': *130 '409': *121 @@ -91814,14 +91979,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: &664 + schema: &666 title: Import description: A repository import from an external source. type: object @@ -91920,7 +92085,7 @@ paths: - html_url - authors_url examples: - default: &667 + default: &669 value: vcs: subversion use_lfs: true @@ -91936,7 +92101,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': &665 + '503': &667 description: Unavailable due to service under maintenance. content: application/json: @@ -91965,8 +92130,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -92014,7 +92179,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *666 examples: default: value: @@ -92039,7 +92204,7 @@ paths: type: string '422': *15 '404': *6 - '503': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92067,8 +92232,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -92117,7 +92282,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *666 examples: example-1: summary: Example 1 @@ -92165,7 +92330,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': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92188,12 +92353,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response - '503': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92219,9 +92384,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *478 - - *479 - - &849 + - *480 + - *481 + - &851 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -92235,7 +92400,7 @@ paths: application/json: schema: type: array - items: &666 + items: &668 title: Porter Author description: Porter Author type: object @@ -92289,7 +92454,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': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92314,8 +92479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *478 - - *479 + - *480 + - *481 - name: author_id in: path required: true @@ -92345,7 +92510,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *668 examples: default: value: @@ -92358,7 +92523,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92382,8 +92547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -92424,7 +92589,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92452,8 +92617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -92480,11 +92645,11 @@ paths: description: Response content: application/json: - schema: *664 + schema: *666 examples: - default: *667 + default: *669 '422': *15 - '503': *665 + '503': *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92507,8 +92672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -92516,8 +92681,8 @@ paths: application/json: schema: *22 examples: - default: *378 - '301': *484 + default: *380 + '301': *486 '404': *6 x-github: githubCloudOnly: false @@ -92537,8 +92702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -92546,12 +92711,12 @@ paths: application/json: schema: anyOf: - - *380 + - *382 - type: object properties: {} additionalProperties: false examples: - default: &669 + default: &671 value: limit: collaborators_only origin: repository @@ -92576,13 +92741,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: application/json: - schema: *668 + schema: *670 examples: default: summary: Example request body @@ -92594,9 +92759,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: - default: *669 + default: *671 '409': description: Response x-github: @@ -92618,8 +92783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -92642,8 +92807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -92653,9 +92818,9 @@ paths: application/json: schema: type: array - items: *670 + items: *672 examples: - default: &842 + default: &844 value: - id: 1 repository: @@ -92786,9 +92951,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *478 - - *479 - - *384 + - *480 + - *481 + - *386 requestBody: required: false content: @@ -92817,7 +92982,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: default: value: @@ -92948,9 +93113,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *478 - - *479 - - *384 + - *480 + - *481 + - *386 responses: '204': description: Response @@ -92981,8 +93146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *478 - - *479 + - *480 + - *481 - 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 @@ -93030,7 +93195,7 @@ paths: required: false schema: type: string - - *391 + - *393 - name: sort description: What to sort results by. in: query @@ -93043,7 +93208,7 @@ paths: - comments default: created - *112 - - *234 + - *236 - *17 - *19 responses: @@ -93053,9 +93218,9 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: &682 + default: &684 value: - id: 1 node_id: MDU6SXNzdWUx @@ -93204,7 +93369,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *484 + '301': *486 '422': *15 '404': *6 x-github: @@ -93233,8 +93398,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -93316,9 +93481,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: &679 + default: &681 value: id: 1 node_id: MDU6SXNzdWUx @@ -93473,9 +93638,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *198 + '503': *200 '404': *6 - '410': *671 + '410': *673 x-github: triggersNotification: true githubCloudOnly: false @@ -93503,9 +93668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *478 - - *479 - - *251 + - *480 + - *481 + - *253 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -93515,7 +93680,7 @@ paths: enum: - asc - desc - - *234 + - *236 - *17 - *19 responses: @@ -93525,9 +93690,9 @@ paths: application/json: schema: type: array - items: *672 + items: *674 examples: - default: &681 + default: &683 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93585,17 +93750,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '200': description: Response content: application/json: - schema: *672 + schema: *674 examples: - default: &673 + default: &675 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93650,9 +93815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -93674,9 +93839,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: - default: *673 + default: *675 '422': *15 x-github: githubCloudOnly: false @@ -93694,9 +93859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '204': description: Response @@ -93724,15 +93889,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '200': description: Response content: application/json: - schema: *672 + schema: *674 examples: default: value: @@ -93788,7 +93953,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *671 + '410': *673 '422': *15 x-github: githubCloudOnly: false @@ -93805,17 +93970,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *671 - '503': *198 + '410': *673 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93832,9 +93997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -93860,9 +94025,9 @@ paths: application/json: schema: type: array - items: *593 + items: *595 examples: - default: *674 + default: *676 headers: Link: *47 '404': *6 @@ -93883,9 +94048,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -93917,16 +94082,16 @@ paths: description: Reaction exists content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '201': description: Reaction created content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '422': *15 x-github: githubCloudOnly: false @@ -93948,10 +94113,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *478 - - *479 - - *243 - - *675 + - *480 + - *481 + - *245 + - *677 responses: '204': description: Response @@ -93971,8 +94136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -93982,7 +94147,7 @@ paths: application/json: schema: type: array - items: &678 + items: &680 title: Issue Event description: Issue Event type: object @@ -94025,8 +94190,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *676 - required: *677 + properties: *678 + required: *679 nullable: true label: title: Issue Event Label @@ -94070,7 +94235,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *317 + requested_team: *319 dismissed_review: title: Issue Event Dismissed Review type: object @@ -94135,7 +94300,7 @@ paths: required: - from - to - author_association: *224 + author_association: *226 lock_reason: type: string nullable: true @@ -94148,8 +94313,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 required: - id - node_id @@ -94334,8 +94499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *478 - - *479 + - *480 + - *481 - name: event_id in: path required: true @@ -94346,7 +94511,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *680 examples: default: value: @@ -94539,7 +94704,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *671 + '410': *673 '403': *29 x-github: githubCloudOnly: false @@ -94573,9 +94738,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *478 - - *479 - - &680 + - *480 + - *481 + - &682 name: issue_number description: The number that identifies the issue. in: path @@ -94587,11 +94752,11 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: default: summary: Issue - value: *679 + value: *681 pinned_comment: summary: Issue with pinned comment value: @@ -94790,9 +94955,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 '304': *37 x-github: githubCloudOnly: false @@ -94817,9 +94982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: false content: @@ -94943,15 +95108,15 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 '422': *15 - '503': *198 + '503': *200 '403': *29 - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94969,9 +95134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: false content: @@ -94997,9 +95162,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95015,9 +95180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: content: application/json: @@ -95042,9 +95207,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95066,9 +95231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - name: assignee in: path required: true @@ -95108,10 +95273,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *478 - - *479 - - *680 - - *234 + - *480 + - *481 + - *682 + - *236 - *17 - *19 responses: @@ -95121,13 +95286,13 @@ paths: application/json: schema: type: array - items: *672 + items: *674 examples: - default: *681 + default: *683 headers: Link: *47 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95156,9 +95321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -95180,16 +95345,16 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: - default: *673 + default: *675 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *671 + '410': *673 '422': *15 '404': *6 x-github: @@ -95217,9 +95382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -95229,14 +95394,14 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: *682 + default: *684 headers: Link: *47 - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95264,9 +95429,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -95288,17 +95453,17 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *484 + '301': *486 '403': *29 - '410': *671 + '410': *673 '422': *15 '404': *6 x-github: @@ -95329,9 +95494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -95343,15 +95508,15 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 - '301': *484 + default: *681 + '301': *486 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *671 + '410': *673 x-github: triggersNotification: true githubCloudOnly: false @@ -95377,9 +95542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -95389,14 +95554,14 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: *682 + default: *684 headers: Link: *47 - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95413,9 +95578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -95429,7 +95594,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &686 + - &688 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -95460,8 +95625,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 label: type: object properties: @@ -95483,7 +95648,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &689 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -95514,8 +95679,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 label: type: object properties: @@ -95603,8 +95768,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 assignee: *4 assigner: *4 required: @@ -95619,7 +95784,7 @@ paths: - performed_via_github_app - assignee - assigner - - &688 + - &690 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -95650,8 +95815,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 milestone: type: object properties: @@ -95670,7 +95835,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &689 + - &691 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -95701,8 +95866,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 milestone: type: object properties: @@ -95721,7 +95886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &692 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -95752,8 +95917,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 rename: type: object properties: @@ -95775,7 +95940,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &693 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -95806,10 +95971,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 review_requester: *4 - requested_team: *317 + requested_team: *319 requested_reviewer: *4 required: - review_requester @@ -95822,7 +95987,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &694 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -95853,10 +96018,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 review_requester: *4 - requested_team: *317 + requested_team: *319 requested_reviewer: *4 required: - review_requester @@ -95869,7 +96034,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &695 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -95900,8 +96065,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 dismissed_review: type: object properties: @@ -95929,7 +96094,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &696 title: Locked Issue Event description: Locked Issue Event type: object @@ -95960,8 +96125,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 lock_reason: type: string example: '"off-topic"' @@ -95977,7 +96142,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &697 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -96008,8 +96173,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 project_card: type: object properties: @@ -96043,7 +96208,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &698 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -96074,8 +96239,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 project_card: type: object properties: @@ -96109,7 +96274,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &697 + - &699 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -96140,8 +96305,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 project_card: type: object properties: @@ -96175,7 +96340,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &698 + - &700 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -96266,7 +96431,7 @@ paths: color: red headers: Link: *47 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96283,9 +96448,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -96295,9 +96460,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: &684 + default: &686 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -96321,9 +96486,9 @@ paths: value: '2025-12-25' headers: Link: *47 - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96352,9 +96517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -96418,14 +96583,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *683 + items: *685 examples: - default: *684 + default: *686 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *198 + '503': *200 x-github: triggersNotification: true githubCloudOnly: false @@ -96456,9 +96621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -96523,14 +96688,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *683 + items: *685 examples: - default: *684 + default: *686 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *198 + '503': *200 x-github: triggersNotification: true githubCloudOnly: false @@ -96556,17 +96721,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *478 - - *479 - - *680 - - *387 + - *480 + - *481 + - *682 + - *389 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *198 + '503': *200 x-github: triggersNotification: true githubCloudOnly: false @@ -96584,9 +96749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -96596,9 +96761,9 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: - default: &685 + default: &687 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96616,9 +96781,9 @@ paths: default: false headers: Link: *47 - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96634,9 +96799,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: false content: @@ -96679,12 +96844,12 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: - default: *685 - '301': *484 + default: *687 + '301': *486 '404': *6 - '410': *671 + '410': *673 '422': *15 x-github: githubCloudOnly: false @@ -96701,9 +96866,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: false content: @@ -96763,12 +96928,12 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: - default: *685 - '301': *484 + default: *687 + '301': *486 '404': *6 - '410': *671 + '410': *673 '422': *15 x-github: githubCloudOnly: false @@ -96785,15 +96950,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 responses: '204': description: Response - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96812,9 +96977,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - name: name in: path required: true @@ -96827,7 +96992,7 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: default: value: @@ -96838,9 +97003,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *484 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96860,9 +97025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: false content: @@ -96890,7 +97055,7 @@ paths: '204': description: Response '403': *29 - '410': *671 + '410': *673 '404': *6 '422': *15 x-github: @@ -96908,9 +97073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 responses: '204': description: Response @@ -96940,20 +97105,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 responses: '200': description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 - '301': *484 + default: *681 + '301': *486 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96970,9 +97135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -96998,13 +97163,13 @@ paths: application/json: schema: type: array - items: *593 + items: *595 examples: - default: *674 + default: *676 headers: Link: *47 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97022,9 +97187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -97056,16 +97221,16 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '201': description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '422': *15 x-github: githubCloudOnly: false @@ -97087,10 +97252,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *478 - - *479 - - *680 - - *675 + - *480 + - *481 + - *682 + - *677 responses: '204': description: Response @@ -97119,9 +97284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -97143,9 +97308,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -97178,9 +97343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -97190,13 +97355,13 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: *682 + default: *684 headers: Link: *47 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97224,9 +97389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -97253,16 +97418,16 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *671 + '410': *673 '422': *15 '404': *6 x-github: @@ -97282,9 +97447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 requestBody: required: true content: @@ -97315,13 +97480,13 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: - default: *679 + default: *681 '403': *29 '404': *6 '422': *7 - '503': *198 + '503': *200 x-github: triggersNotification: true githubCloudOnly: false @@ -97339,9 +97504,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *478 - - *479 - - *680 + - *480 + - *481 + - *682 - *17 - *19 responses: @@ -97356,8 +97521,6 @@ paths: description: Timeline Event type: object anyOf: - - *686 - - *687 - *688 - *689 - *690 @@ -97369,6 +97532,8 @@ paths: - *696 - *697 - *698 + - *699 + - *700 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -97411,7 +97576,7 @@ paths: issue_url: type: string format: uri - author_association: *224 + author_association: *226 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -97421,16 +97586,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 - reactions: *225 + properties: *224 + required: *225 + reactions: *227 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *699 - required: *700 + properties: *701 + required: *702 nullable: true required: - event @@ -97462,7 +97627,7 @@ paths: properties: type: type: string - issue: *227 + issue: *229 required: - event - created_at @@ -97662,7 +97827,7 @@ paths: type: string body_text: type: string - author_association: *224 + author_association: *226 required: - event - id @@ -97685,7 +97850,7 @@ paths: type: string comments: type: array - items: &722 + items: &724 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -97780,7 +97945,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *224 + author_association: *226 _links: type: object properties: @@ -97864,7 +98029,7 @@ paths: enum: - line - file - reactions: *225 + reactions: *227 body_html: type: string example: '"

comment body

"' @@ -97900,7 +98065,7 @@ paths: type: string comments: type: array - items: *592 + items: *594 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -97931,8 +98096,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 assignee: *4 required: - id @@ -97975,8 +98140,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 assignee: *4 required: - id @@ -98019,8 +98184,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 state_reason: type: string nullable: true @@ -98189,7 +98354,7 @@ paths: headers: Link: *47 '404': *6 - '410': *671 + '410': *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98206,8 +98371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -98217,7 +98382,7 @@ paths: application/json: schema: type: array - items: &701 + items: &703 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -98283,8 +98448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -98320,9 +98485,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *703 examples: - default: &702 + default: &704 value: id: 1 key: ssh-rsa AAA... @@ -98356,9 +98521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *478 - - *479 - - &703 + - *480 + - *481 + - &705 name: key_id description: The unique identifier of the key. in: path @@ -98370,9 +98535,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *703 examples: - default: *702 + default: *704 '404': *6 x-github: githubCloudOnly: false @@ -98390,9 +98555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *478 - - *479 - - *703 + - *480 + - *481 + - *705 responses: '204': description: Response @@ -98412,8 +98577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -98423,9 +98588,9 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: - default: *685 + default: *687 headers: Link: *47 '404': *6 @@ -98446,8 +98611,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -98483,9 +98648,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: &704 + default: &706 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -98517,8 +98682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *478 - - *479 + - *480 + - *481 - name: name in: path required: true @@ -98529,9 +98694,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - default: *704 + default: *706 '404': *6 x-github: githubCloudOnly: false @@ -98548,8 +98713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *478 - - *479 + - *480 + - *481 - name: name in: path required: true @@ -98588,7 +98753,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -98614,8 +98779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *478 - - *479 + - *480 + - *481 - name: name in: path required: true @@ -98641,8 +98806,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -98678,8 +98843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '202': *39 '403': @@ -98707,8 +98872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -98734,9 +98899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *478 - - *479 - - *565 + - *480 + - *481 + - *567 responses: '200': description: Response @@ -98798,8 +98963,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true required: - _links @@ -98881,8 +99046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -98947,8 +99112,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -98982,9 +99147,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *595 + schema: *597 examples: - default: *705 + default: *707 '204': description: Response when already merged '404': @@ -99009,8 +99174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *478 - - *479 + - *480 + - *481 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -99051,12 +99216,12 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 examples: default: value: @@ -99112,8 +99277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -99153,9 +99318,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: &707 + default: &709 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -99214,9 +99379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *478 - - *479 - - &708 + - *480 + - *481 + - &710 name: milestone_number description: The number that identifies the milestone. in: path @@ -99228,9 +99393,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: *707 + default: *709 '404': *6 x-github: githubCloudOnly: false @@ -99247,9 +99412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *478 - - *479 - - *708 + - *480 + - *481 + - *710 requestBody: required: false content: @@ -99287,9 +99452,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *708 examples: - default: *707 + default: *709 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99305,9 +99470,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *478 - - *479 - - *708 + - *480 + - *481 + - *710 responses: '204': description: Response @@ -99328,9 +99493,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *478 - - *479 - - *708 + - *480 + - *481 + - *710 - *17 - *19 responses: @@ -99340,9 +99505,9 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: - default: *685 + default: *687 headers: Link: *47 x-github: @@ -99361,12 +99526,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *478 - - *479 - - *709 - - *710 - - *234 + - *480 + - *481 - *711 + - *712 + - *236 + - *713 - *17 - *19 responses: @@ -99376,9 +99541,9 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: - default: *712 + default: *714 headers: Link: *47 x-github: @@ -99402,8 +99567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -99461,14 +99626,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: &713 + schema: &715 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -99593,7 +99758,7 @@ paths: - custom_404 - public examples: - default: &714 + default: &716 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -99634,8 +99799,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -99689,9 +99854,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *715 examples: - default: *714 + default: *716 '422': *15 '409': *121 x-github: @@ -99714,8 +99879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -99822,8 +99987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -99849,8 +100014,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -99860,7 +100025,7 @@ paths: application/json: schema: type: array - items: &715 + items: &717 title: Page Build description: Page Build type: object @@ -99954,8 +100119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *478 - - *479 + - *480 + - *481 responses: '201': description: Response @@ -100000,16 +100165,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *715 + schema: *717 examples: - default: &716 + default: &718 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -100057,8 +100222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *478 - - *479 + - *480 + - *481 - name: build_id in: path required: true @@ -100069,9 +100234,9 @@ paths: description: Response content: application/json: - schema: *715 + schema: *717 examples: - default: *716 + default: *718 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100091,8 +100256,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -100197,9 +100362,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *478 - - *479 - - &717 + - *480 + - *481 + - &719 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -100257,9 +100422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *478 - - *479 - - *717 + - *480 + - *481 + - *719 responses: '204': *130 '404': *6 @@ -100286,8 +100451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -100518,7 +100683,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -100545,8 +100710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Private vulnerability reporting status @@ -100583,8 +100748,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': *130 '422': *14 @@ -100605,8 +100770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': *130 '422': *14 @@ -100628,8 +100793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -100637,9 +100802,9 @@ paths: application/json: schema: type: array - items: *158 + items: *160 examples: - default: *718 + default: *720 '403': *29 '404': *6 x-github: @@ -100661,8 +100826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -100674,11 +100839,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *158 + items: *160 required: - properties examples: - default: *719 + default: *721 responses: '204': description: No Content when custom property values are successfully created @@ -100716,8 +100881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *478 - - *479 + - *480 + - *481 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -100777,9 +100942,9 @@ paths: application/json: schema: type: array - items: *599 + items: *601 examples: - default: *720 + default: *722 headers: Link: *47 '304': *37 @@ -100811,8 +100976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -100877,7 +101042,7 @@ paths: description: Response content: application/json: - schema: &724 + schema: &726 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -100988,8 +101153,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 nullable: true active_lock_reason: type: string @@ -101032,7 +101197,7 @@ paths: items: *4 requested_teams: type: array - items: *462 + items: *464 head: type: object properties: @@ -101070,14 +101235,14 @@ paths: _links: type: object properties: - comments: *425 - commits: *425 - statuses: *425 - html: *425 - issue: *425 - review_comments: *425 - review_comment: *425 - self: *425 + comments: *427 + commits: *427 + statuses: *427 + html: *427 + issue: *427 + review_comments: *427 + review_comment: *427 + self: *427 required: - comments - commits @@ -101087,8 +101252,8 @@ paths: - review_comments - review_comment - self - author_association: *224 - auto_merge: *721 + author_association: *226 + auto_merge: *723 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -101180,7 +101345,7 @@ paths: - merged_by - review_comments examples: - default: &725 + default: &727 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -101707,8 +101872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *478 - - *479 + - *480 + - *481 - name: sort in: query required: false @@ -101727,7 +101892,7 @@ paths: enum: - asc - desc - - *234 + - *236 - *17 - *19 responses: @@ -101737,9 +101902,9 @@ paths: application/json: schema: type: array - items: *722 + items: *724 examples: - default: &727 + default: &729 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101816,17 +101981,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '200': description: Response content: application/json: - schema: *722 + schema: *724 examples: - default: &723 + default: &725 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101901,9 +102066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -101925,9 +102090,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *724 examples: - default: *723 + default: *725 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101943,9 +102108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 responses: '204': description: Response @@ -101966,9 +102131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -101994,9 +102159,9 @@ paths: application/json: schema: type: array - items: *593 + items: *595 examples: - default: *674 + default: *676 headers: Link: *47 '404': *6 @@ -102017,9 +102182,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *478 - - *479 - - *243 + - *480 + - *481 + - *245 requestBody: required: true content: @@ -102051,16 +102216,16 @@ paths: description: Reaction exists content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '201': description: Reaction created content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '422': *15 x-github: githubCloudOnly: false @@ -102082,10 +102247,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *478 - - *479 - - *243 - - *675 + - *480 + - *481 + - *245 + - *677 responses: '204': description: Response @@ -102128,9 +102293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *478 - - *479 - - &726 + - *480 + - *481 + - &728 name: pull_number description: The number that identifies the pull request. in: path @@ -102143,9 +102308,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *724 + schema: *726 examples: - default: *725 + default: *727 '304': *37 '404': *6 '406': @@ -102154,7 +102319,7 @@ paths: application/json: schema: *3 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102180,9 +102345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: false content: @@ -102224,9 +102389,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *726 examples: - default: *725 + default: *727 '422': *15 '403': *29 x-github: @@ -102248,9 +102413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#archive-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 responses: '204': description: Response @@ -102275,9 +102440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#unarchive-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 responses: '204': description: Response @@ -102303,9 +102468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: true content: @@ -102365,21 +102530,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '401': *25 '403': *29 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102405,10 +102570,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *478 - - *479 - - *726 - - *251 + - *480 + - *481 + - *728 + - *253 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -102418,7 +102583,7 @@ paths: enum: - asc - desc - - *234 + - *236 - *17 - *19 responses: @@ -102428,9 +102593,9 @@ paths: application/json: schema: type: array - items: *722 + items: *724 examples: - default: *727 + default: *729 headers: Link: *47 x-github: @@ -102463,9 +102628,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: true content: @@ -102570,7 +102735,7 @@ paths: description: Response content: application/json: - schema: *722 + schema: *724 examples: example-for-a-multi-line-comment: value: @@ -102658,10 +102823,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *478 - - *479 - - *726 - - *243 + - *480 + - *481 + - *728 + - *245 requestBody: required: true content: @@ -102683,7 +102848,7 @@ paths: description: Response content: application/json: - schema: *722 + schema: *724 examples: default: value: @@ -102769,9 +102934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 - *17 - *19 responses: @@ -102781,9 +102946,9 @@ paths: application/json: schema: type: array - items: *595 + items: *597 examples: - default: *728 + default: *730 headers: Link: *47 x-github: @@ -102813,9 +102978,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 - *17 - *19 responses: @@ -102825,7 +102990,7 @@ paths: application/json: schema: type: array - items: *608 + items: *610 examples: default: value: @@ -102844,7 +103009,7 @@ paths: Link: *47 '422': *15 '500': *40 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102863,9 +103028,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 responses: '204': description: Response if pull request has been merged @@ -102888,9 +103053,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: false content: @@ -103001,9 +103166,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 responses: '200': description: Response @@ -103019,7 +103184,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *319 required: - users - teams @@ -103078,9 +103243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: false content: @@ -103117,7 +103282,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *601 examples: default: value: @@ -103653,9 +103818,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: true content: @@ -103689,7 +103854,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *601 examples: default: value: @@ -104194,9 +104359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 - *17 - *19 responses: @@ -104206,7 +104371,7 @@ paths: application/json: schema: type: array - items: &729 + items: &731 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -104275,7 +104440,7 @@ paths: type: string body_text: type: string - author_association: *224 + author_association: *226 required: - id - node_id @@ -104357,9 +104522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: false content: @@ -104445,9 +104610,9 @@ paths: description: Response content: application/json: - schema: *729 + schema: *731 examples: - default: &731 + default: &733 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -104510,10 +104675,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 - - &730 + - *480 + - *481 + - *728 + - &732 name: review_id description: The unique identifier of the review. in: path @@ -104525,9 +104690,9 @@ paths: description: Response content: application/json: - schema: *729 + schema: *731 examples: - default: &732 + default: &734 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -104586,10 +104751,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 - - *730 + - *480 + - *481 + - *728 + - *732 requestBody: required: true content: @@ -104612,7 +104777,7 @@ paths: description: Response content: application/json: - schema: *729 + schema: *731 examples: default: value: @@ -104674,18 +104839,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 - - *730 + - *480 + - *481 + - *728 + - *732 responses: '200': description: Response content: application/json: - schema: *729 + schema: *731 examples: - default: *731 + default: *733 '422': *7 '404': *6 x-github: @@ -104712,10 +104877,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *478 - - *479 - - *726 - - *730 + - *480 + - *481 + - *728 + - *732 - *17 - *19 responses: @@ -104794,13 +104959,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *224 + author_association: *226 _links: type: object properties: - self: *425 - html: *425 - pull_request: *425 + self: *427 + html: *427 + pull_request: *427 required: - self - html @@ -104809,7 +104974,7 @@ paths: type: string body_html: type: string - reactions: *225 + reactions: *227 side: description: The side of the first line of the range for a multi-line comment. @@ -104950,10 +105115,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 - - *730 + - *480 + - *481 + - *728 + - *732 requestBody: required: true content: @@ -104981,7 +105146,7 @@ paths: description: Response content: application/json: - schema: *729 + schema: *731 examples: default: value: @@ -105044,10 +105209,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *478 - - *479 - - *726 - - *730 + - *480 + - *481 + - *728 + - *732 requestBody: required: true content: @@ -105082,9 +105247,9 @@ paths: description: Response content: application/json: - schema: *729 + schema: *731 examples: - default: *732 + default: *734 '404': *6 '422': *7 '403': *29 @@ -105106,9 +105271,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *478 - - *479 - - *726 + - *480 + - *481 + - *728 requestBody: required: false content: @@ -105171,8 +105336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *478 - - *479 + - *480 + - *481 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -105185,9 +105350,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *735 examples: - default: &734 + default: &736 value: type: file encoding: base64 @@ -105229,8 +105394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *478 - - *479 + - *480 + - *481 - name: dir description: The alternate path to look for a README file in: path @@ -105250,9 +105415,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *735 examples: - default: *734 + default: *736 '404': *6 '422': *15 x-github: @@ -105274,8 +105439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -105285,7 +105450,7 @@ paths: application/json: schema: type: array - items: *735 + items: *737 examples: default: value: @@ -105379,8 +105544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -105456,9 +105621,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *737 examples: - default: &739 + default: &741 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -105563,9 +105728,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *478 - - *479 - - &737 + - *480 + - *481 + - &739 name: asset_id description: The unique identifier of the asset. in: path @@ -105577,9 +105742,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: &738 + default: &740 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 @@ -105614,7 +105779,7 @@ paths: type: User site_admin: false '404': *6 - '302': *612 + '302': *614 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105630,9 +105795,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *478 - - *479 - - *737 + - *480 + - *481 + - *739 requestBody: required: false content: @@ -105660,9 +105825,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: *738 + default: *740 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105678,9 +105843,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *478 - - *479 - - *737 + - *480 + - *481 + - *739 responses: '204': description: Response @@ -105705,8 +105870,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -105791,16 +105956,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response content: application/json: - schema: *735 + schema: *737 examples: - default: *739 + default: *741 '404': *6 x-github: githubCloudOnly: false @@ -105818,8 +105983,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *478 - - *479 + - *480 + - *481 - name: tag description: tag parameter in: path @@ -105832,9 +105997,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *737 examples: - default: *739 + default: *741 '404': *6 x-github: githubCloudOnly: false @@ -105856,9 +106021,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *478 - - *479 - - &740 + - *480 + - *481 + - &742 name: release_id description: The unique identifier of the release. in: path @@ -105872,9 +106037,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *735 + schema: *737 examples: - default: *739 + default: *741 '401': description: Unauthorized x-github: @@ -105892,9 +106057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 requestBody: required: false content: @@ -105958,9 +106123,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *737 examples: - default: *739 + default: *741 '404': description: Not Found if the discussion category name is invalid content: @@ -105981,9 +106146,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 responses: '204': description: Response @@ -106004,9 +106169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 - *17 - *19 responses: @@ -106016,7 +106181,7 @@ paths: application/json: schema: type: array - items: *736 + items: *738 examples: default: value: @@ -106098,9 +106263,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: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 - name: name in: query required: true @@ -106126,7 +106291,7 @@ paths: description: Response for successful upload content: application/json: - schema: *736 + schema: *738 examples: response-for-successful-upload: value: @@ -106181,9 +106346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -106207,9 +106372,9 @@ paths: application/json: schema: type: array - items: *593 + items: *595 examples: - default: *674 + default: *676 headers: Link: *47 '404': *6 @@ -106230,9 +106395,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *478 - - *479 - - *740 + - *480 + - *481 + - *742 requestBody: required: true content: @@ -106262,16 +106427,16 @@ paths: description: Reaction exists content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '201': description: Reaction created content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '422': *15 x-github: githubCloudOnly: false @@ -106293,10 +106458,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *478 - - *479 - - *740 - - *675 + - *480 + - *481 + - *742 + - *677 responses: '204': description: Response @@ -106320,9 +106485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *478 - - *479 - - *531 + - *480 + - *481 + - *533 - *17 - *19 responses: @@ -106338,8 +106503,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *172 - - &741 + - *174 + - &743 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -106358,69 +106523,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *173 - - *741 - - allOf: - - *174 - - *741 - allOf: - *175 - - *741 - - allOf: - - *742 - - *741 + - *743 - allOf: - *176 - - *741 + - *743 - allOf: - *177 - - *741 + - *743 + - allOf: + - *744 + - *743 - allOf: - *178 - - *741 + - *743 - allOf: - *179 - - *741 + - *743 - allOf: - *180 - - *741 + - *743 - allOf: - *181 - - *741 + - *743 - allOf: - *182 - - *741 + - *743 - allOf: - *183 - - *741 + - *743 - allOf: - *184 - - *741 + - *743 - allOf: - *185 - - *741 + - *743 - allOf: - *186 - - *741 + - *743 - allOf: - *187 - - *741 + - *743 - allOf: - *188 - - *741 + - *743 - allOf: - *189 - - *741 + - *743 - allOf: - *190 - - *741 + - *743 - allOf: - *191 - - *741 + - *743 - allOf: - *192 - - *741 + - *743 + - allOf: + - *193 + - *743 + - allOf: + - *194 + - *743 examples: default: value: @@ -106459,8 +106624,8 @@ paths: category: repos subcategory: rules parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 - name: includes_parents @@ -106471,7 +106636,7 @@ paths: schema: type: boolean default: true - - *743 + - *745 responses: '200': description: Response @@ -106479,7 +106644,7 @@ paths: application/json: schema: type: array - items: *193 + items: *195 examples: default: value: @@ -106526,8 +106691,8 @@ paths: category: repos subcategory: rules parameters: - - *478 - - *479 + - *480 + - *481 requestBody: description: Request body required: true @@ -106547,16 +106712,16 @@ paths: - tag - push default: branch - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 - conditions: *164 + items: *173 + conditions: *166 rules: type: array description: An array of rules within the ruleset. - items: *744 + items: *746 required: - name - enforcement @@ -106587,9 +106752,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: &753 + default: &755 value: id: 42 name: super cool ruleset @@ -106637,12 +106802,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *478 - - *479 - - *745 - - *107 - - *746 + - *480 + - *481 - *747 + - *107 + - *748 + - *749 - *17 - *19 responses: @@ -106650,9 +106815,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *750 examples: - default: *749 + default: *751 '404': *6 '500': *40 x-github: @@ -106673,17 +106838,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *478 - - *479 - - *750 + - *480 + - *481 + - *752 responses: '200': description: Response content: application/json: - schema: *751 + schema: *753 examples: - default: *752 + default: *754 '404': *6 '500': *40 x-github: @@ -106711,8 +106876,8 @@ paths: category: repos subcategory: rules parameters: - - *478 - - *479 + - *480 + - *481 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106732,9 +106897,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *753 + default: *755 '404': *6 '500': *40 put: @@ -106752,8 +106917,8 @@ paths: category: repos subcategory: rules parameters: - - *478 - - *479 + - *480 + - *481 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106778,16 +106943,16 @@ paths: - branch - tag - push - enforcement: *170 + enforcement: *172 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *171 - conditions: *164 + items: *173 + conditions: *166 rules: description: An array of rules within the ruleset. type: array - items: *744 + items: *746 examples: default: value: @@ -106815,9 +106980,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *195 examples: - default: *753 + default: *755 '404': *6 '422': *15 '500': *40 @@ -106836,8 +107001,8 @@ paths: category: repos subcategory: rules parameters: - - *478 - - *479 + - *480 + - *481 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106860,8 +107025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 - name: ruleset_id @@ -106877,9 +107042,9 @@ paths: application/json: schema: type: array - items: *197 + items: *199 examples: - default: *443 + default: *445 '404': *6 '500': *40 x-github: @@ -106898,8 +107063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *478 - - *479 + - *480 + - *481 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106917,7 +107082,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *446 examples: default: value: @@ -106972,25 +107137,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *478 - - *479 - - *445 - - *446 + - *480 + - *481 - *447 - *448 - *449 - *450 - *451 - *452 + - *453 + - *454 - *112 - *19 - *17 - - *754 - - *755 - - *453 - - *454 + - *756 + - *757 - *455 - *456 + - *457 + - *458 responses: '200': description: Response @@ -106998,7 +107163,7 @@ paths: application/json: schema: type: array - items: &759 + items: &761 type: object properties: number: *131 @@ -107017,8 +107182,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *756 - resolution: *757 + state: *758 + resolution: *759 resolved_at: type: string format: date-time @@ -107124,7 +107289,7 @@ paths: pull request. ' - oneOf: *758 + oneOf: *760 nullable: true has_more_locations: type: boolean @@ -107266,7 +107431,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107288,16 +107453,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *478 - - *479 - - *559 - - *456 + - *480 + - *481 + - *561 + - *458 responses: '200': description: Response content: application/json: - schema: *759 + schema: *761 examples: default: value: @@ -107328,7 +107493,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107351,9 +107516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 requestBody: required: true content: @@ -107361,8 +107526,8 @@ paths: schema: type: object properties: - state: *756 - resolution: *757 + state: *758 + resolution: *759 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -107398,7 +107563,7 @@ paths: description: Response content: application/json: - schema: *759 + schema: *761 examples: default: value: @@ -107471,7 +107636,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -107493,9 +107658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *478 - - *479 - - *559 + - *480 + - *481 + - *561 - *19 - *17 responses: @@ -107506,7 +107671,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &945 + items: &947 type: object properties: type: @@ -107532,8 +107697,6 @@ paths: example: commit details: oneOf: - - *760 - - *761 - *762 - *763 - *764 @@ -107545,6 +107708,8 @@ paths: - *770 - *771 - *772 + - *773 + - *774 examples: default: value: @@ -107608,7 +107773,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107630,8 +107795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -107639,14 +107804,14 @@ paths: schema: type: object properties: - reason: &774 + reason: &776 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *773 + placeholder_id: *775 required: - reason - placeholder_id @@ -107663,7 +107828,7 @@ paths: schema: type: object properties: - reason: *774 + reason: *776 expire_at: type: string format: date-time @@ -107686,7 +107851,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *198 + '503': *200 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -107709,13 +107874,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *198 + '503': *200 '200': description: Response content: @@ -107725,7 +107890,7 @@ paths: properties: incremental_scans: type: array - items: &775 + items: &777 description: Information on a single scan performed by secret scanning on the repository type: object @@ -107751,15 +107916,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *775 + items: *777 backfill_scans: type: array - items: *775 + items: *777 custom_pattern_backfill_scans: type: array items: allOf: - - *775 + - *777 - type: object properties: pattern_name: @@ -107772,7 +107937,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *775 + items: *777 examples: default: value: @@ -107837,8 +108002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *478 - - *479 + - *480 + - *481 - *112 - name: sort description: The property to sort the results by. @@ -107882,9 +108047,9 @@ paths: application/json: schema: type: array - items: *776 + items: *778 examples: - default: *777 + default: *779 '400': *14 '404': *6 x-github: @@ -107907,8 +108072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -107981,7 +108146,7 @@ paths: login: type: string description: The username of the user credited. - type: *461 + type: *463 required: - login - type @@ -108068,9 +108233,9 @@ paths: description: Response content: application/json: - schema: *776 + schema: *778 examples: - default: &779 + default: &781 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -108303,8 +108468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -108408,7 +108573,7 @@ paths: description: Response content: application/json: - schema: *776 + schema: *778 examples: default: value: @@ -108555,17 +108720,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *478 - - *479 - - *778 + - *480 + - *481 + - *780 responses: '200': description: Response content: application/json: - schema: *776 + schema: *778 examples: - default: *779 + default: *781 '403': *29 '404': *6 x-github: @@ -108589,9 +108754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *478 - - *479 - - *778 + - *480 + - *481 + - *780 requestBody: required: true content: @@ -108664,7 +108829,7 @@ paths: login: type: string description: The username of the user credited. - type: *461 + type: *463 required: - login - type @@ -108750,17 +108915,17 @@ paths: description: Response content: application/json: - schema: *776 + schema: *778 examples: - default: *779 - add_credit: *779 + default: *781 + add_credit: *781 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *263 + schema: *265 examples: invalid_state_transition: value: @@ -108791,9 +108956,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *478 - - *479 - - *778 + - *480 + - *481 + - *780 responses: '202': *39 '400': *14 @@ -108820,17 +108985,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *478 - - *479 - - *778 + - *480 + - *481 + - *780 responses: '202': description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *485 + default: *487 '400': *14 '422': *15 '403': *29 @@ -108856,8 +109021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -108956,8 +109121,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -108966,7 +109131,7 @@ paths: application/json: schema: type: array - items: &780 + items: &782 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -108999,8 +109164,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -109076,8 +109241,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -109173,8 +109338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -109328,8 +109493,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -109339,7 +109504,7 @@ paths: application/json: schema: type: array - items: *780 + items: *782 examples: default: value: @@ -109372,8 +109537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *478 - - *479 + - *480 + - *481 - name: sha in: path required: true @@ -109427,7 +109592,7 @@ paths: description: Response content: application/json: - schema: *781 + schema: *783 examples: default: value: @@ -109481,8 +109646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -109494,7 +109659,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -109514,14 +109679,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &782 + schema: &784 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -109589,8 +109754,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: false content: @@ -109616,7 +109781,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *784 examples: default: value: @@ -109643,8 +109808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -109664,8 +109829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -109744,8 +109909,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *478 - - *479 + - *480 + - *481 - name: ref in: path required: true @@ -109781,8 +109946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *478 - - *479 + - *480 + - *481 - *17 - *19 responses: @@ -109792,9 +109957,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - default: *403 + default: *405 headers: Link: *47 '404': *6 @@ -109814,8 +109979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *478 - - *479 + - *480 + - *481 - *19 - *17 responses: @@ -109823,7 +109988,7 @@ paths: description: Response content: application/json: - schema: &783 + schema: &785 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -109835,7 +110000,7 @@ paths: required: - names examples: - default: &784 + default: &786 value: names: - octocat @@ -109858,8 +110023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -109890,9 +110055,9 @@ paths: description: Response content: application/json: - schema: *783 + schema: *785 examples: - default: *784 + default: *786 '404': *6 '422': *7 x-github: @@ -109913,9 +110078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *478 - - *479 - - &785 + - *480 + - *481 + - &787 name: per description: The time frame to display results for. in: query @@ -109944,7 +110109,7 @@ paths: example: 128 clones: type: array - items: &786 + items: &788 title: Traffic type: object properties: @@ -110031,8 +110196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -110122,8 +110287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *478 - - *479 + - *480 + - *481 responses: '200': description: Response @@ -110183,9 +110348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *478 - - *479 - - *785 + - *480 + - *481 + - *787 responses: '200': description: Response @@ -110204,7 +110369,7 @@ paths: example: 3782 views: type: array - items: *786 + items: *788 required: - uniques - count @@ -110281,8 +110446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *478 - - *479 + - *480 + - *481 requestBody: required: true content: @@ -110318,7 +110483,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: default: value: @@ -110556,8 +110721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -110580,8 +110745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -110603,8 +110768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -110630,8 +110795,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *478 - - *479 + - *480 + - *481 - name: ref in: path required: true @@ -110723,9 +110888,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *485 + default: *487 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110766,7 +110931,7 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: default: value: @@ -110876,7 +111041,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &794 + - &796 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -110885,7 +111050,7 @@ paths: schema: type: string example: members - - &799 + - &801 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -110896,7 +111061,7 @@ paths: default: 1 format: int32 example: 1 - - &800 + - &802 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -110938,7 +111103,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &789 + items: &791 allOf: - type: object required: @@ -111013,7 +111178,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &801 + meta: &803 type: object description: The metadata associated with the creation/updates to the user. @@ -111073,30 +111238,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &790 + '400': &792 description: Bad request content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 - '401': *788 - '403': &791 + schema: *789 + '401': *790 + '403': &793 description: Permission denied - '429': &792 + '429': &794 description: Too many requests content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 - '500': &793 + schema: *789 + '500': &795 description: Internal server error content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 + schema: *789 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111120,7 +111285,7 @@ paths: required: true content: application/json: - schema: &797 + schema: &799 type: object required: - schemas @@ -111180,9 +111345,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *789 + schema: *791 examples: - group: &795 + group: &797 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -111201,13 +111366,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *790 - '401': *788 - '403': *791 - '409': &798 + '400': *792 + '401': *790 + '403': *793 + '409': &800 description: Duplicate record detected - '429': *792 - '500': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111224,7 +111389,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &796 + - &798 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -111232,22 +111397,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *794 + - *796 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *789 + schema: *791 examples: - default: *795 - '400': *790 - '401': *788 - '403': *791 + default: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *792 - '500': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111266,13 +111431,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *796 + - *798 - *41 requestBody: required: true content: application/json: - schema: *797 + schema: *799 examples: group: summary: Group @@ -111298,17 +111463,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *789 + schema: *791 examples: - group: *795 - groupWithMembers: *795 - '400': *790 - '401': *788 - '403': *791 + group: *797 + groupWithMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *798 - '429': *792 - '500': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111332,13 +111497,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *796 + - *798 - *41 requestBody: required: true content: application/json: - schema: &808 + schema: &810 type: object required: - Operations @@ -111398,17 +111563,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *789 + schema: *791 examples: - updateGroup: *795 - addMembers: *795 - '400': *790 - '401': *788 - '403': *791 + updateGroup: *797 + addMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *798 - '429': *792 - '500': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111424,17 +111589,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *796 + - *798 - *41 responses: '204': description: Group was deleted, no content - '400': *790 - '401': *788 - '403': *791 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *792 - '500': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111468,8 +111633,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *799 - - *800 + - *801 + - *802 - *41 responses: '200': @@ -111502,7 +111667,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &803 + items: &805 allOf: - type: object required: @@ -111581,7 +111746,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &802 + roles: &804 type: array description: The roles assigned to the user. items: @@ -111637,7 +111802,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *801 + meta: *803 startIndex: type: integer description: A starting index for the returned page @@ -111674,11 +111839,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *790 - '401': *788 - '403': *791 - '429': *792 - '500': *793 + '400': *792 + '401': *790 + '403': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111702,7 +111867,7 @@ paths: required: true content: application/json: - schema: &806 + schema: &808 type: object required: - schemas @@ -111784,9 +111949,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *802 + roles: *804 examples: - user: &807 + user: &809 summary: User value: schemas: @@ -111833,9 +111998,9 @@ paths: description: User has been created content: application/scim+json: - schema: *803 + schema: *805 examples: - user: &804 + user: &806 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -111861,13 +112026,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *804 - '400': *790 - '401': *788 - '403': *791 - '409': *798 - '429': *792 - '500': *793 + enterpriseOwner: *806 + '400': *792 + '401': *790 + '403': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111884,7 +112049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &805 + - &807 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -111897,15 +112062,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *803 + schema: *805 examples: - default: *804 - '400': *790 - '401': *788 - '403': *791 + default: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *792 - '500': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111956,30 +112121,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *805 + - *807 - *41 requestBody: required: true content: application/json: - schema: *806 + schema: *808 examples: - user: *807 + user: *809 responses: '200': description: User was updated content: application/scim+json: - schema: *803 + schema: *805 examples: - user: *804 - '400': *790 - '401': *788 - '403': *791 + user: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *798 - '429': *792 - '500': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112020,13 +112185,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *805 + - *807 - *41 requestBody: required: true content: application/json: - schema: *808 + schema: *810 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -112066,18 +112231,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *803 + schema: *805 examples: - userMultiValuedProperties: *804 - userSingleValuedProperties: *804 - disableUser: *804 - '400': *790 - '401': *788 - '403': *791 + userMultiValuedProperties: *806 + userSingleValuedProperties: *806 + disableUser: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *798 - '429': *792 - '500': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112097,17 +112262,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *805 + - *807 - *41 responses: '204': description: User was deleted, no content - '400': *790 - '401': *788 - '403': *791 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *792 - '500': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112194,7 +112359,7 @@ paths: example: 1 Resources: type: array - items: &809 + items: &811 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -112425,22 +112590,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &810 + '404': &812 description: Resource not found content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 - '403': &811 + schema: *789 + '403': &813 description: Forbidden content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 - '400': *790 - '429': *792 + schema: *789 + '400': *792 + '429': *794 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -112466,9 +112631,9 @@ paths: description: Response content: application/scim+json: - schema: *809 + schema: *811 examples: - default: &812 + default: &814 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -112491,17 +112656,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *810 - '403': *811 - '500': *793 + '404': *812 + '403': *813 + '500': *795 '409': description: Conflict content: application/json: - schema: *787 + schema: *789 application/scim+json: - schema: *787 - '400': *790 + schema: *789 + '400': *792 requestBody: required: true content: @@ -112599,17 +112764,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *805 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *809 + schema: *811 examples: - default: *812 - '404': *810 - '403': *811 + default: *814 + '404': *812 + '403': *813 '304': *37 x-github: githubCloudOnly: true @@ -112633,18 +112798,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *805 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *809 + schema: *811 examples: - default: *812 + default: *814 '304': *37 - '404': *810 - '403': *811 + '404': *812 + '403': *813 requestBody: required: true content: @@ -112757,19 +112922,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *805 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *809 + schema: *811 examples: - default: *812 + default: *814 '304': *37 - '404': *810 - '403': *811 - '400': *790 + '404': *812 + '403': *813 + '400': *792 '429': description: Response content: @@ -112860,12 +113025,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *805 + - *807 responses: '204': description: Response - '404': *810 - '403': *811 + '404': *812 + '403': *813 '304': *37 x-github: githubCloudOnly: true @@ -112983,7 +113148,7 @@ paths: html_url: type: string format: uri - repository: *288 + repository: *290 score: type: number file_size: @@ -113001,7 +113166,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &813 + text_matches: &815 title: Search Result Text Matches type: array items: @@ -113115,7 +113280,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *198 + '503': *200 '422': *15 '403': *29 x-github: @@ -113164,7 +113329,7 @@ paths: enum: - author-date - committer-date - - &814 + - &816 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 @@ -113235,7 +113400,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *529 + properties: *531 nullable: true comment_count: type: integer @@ -113255,7 +113420,7 @@ paths: url: type: string format: uri - verification: *658 + verification: *660 required: - author - committer @@ -113274,7 +113439,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *529 + properties: *531 nullable: true parents: type: array @@ -113287,12 +113452,12 @@ paths: type: string sha: type: string - repository: *288 + repository: *290 score: type: number node_id: type: string - text_matches: *813 + text_matches: *815 required: - sha - node_id @@ -113485,7 +113650,7 @@ paths: - interactions - created - updated - - *814 + - *816 - *17 - *19 - name: advanced_search @@ -113599,11 +113764,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: type: string state_reason: @@ -113620,8 +113785,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *423 - required: *424 + properties: *425 + required: *426 nullable: true comments: type: integer @@ -113635,7 +113800,7 @@ paths: type: string format: date-time nullable: true - text_matches: *813 + text_matches: *815 pull_request: type: object properties: @@ -113668,7 +113833,7 @@ paths: type: string score: type: number - author_association: *224 + author_association: *226 draft: type: boolean repository: *80 @@ -113679,7 +113844,7 @@ paths: timeline_url: type: string format: uri - type: *388 + type: *390 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -113689,17 +113854,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - reactions: *225 + reactions: *227 required: - assignee - closed_at @@ -113853,7 +114018,7 @@ paths: - quoted_text items: - "..." - '503': *198 + '503': *200 '422': *15 '304': *37 '403': *29 @@ -113907,7 +114072,7 @@ paths: enum: - created - updated - - *814 + - *816 - *17 - *19 responses: @@ -113951,7 +114116,7 @@ paths: nullable: true score: type: number - text_matches: *813 + text_matches: *815 required: - id - node_id @@ -114037,7 +114202,7 @@ paths: - forks - help-wanted-issues - updated - - *814 + - *816 - *17 - *19 responses: @@ -114265,8 +114430,8 @@ paths: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true permissions: type: object @@ -114285,7 +114450,7 @@ paths: - admin - pull - push - text_matches: *813 + text_matches: *815 temp_clone_token: type: string allow_merge_commit: @@ -114487,7 +114652,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *198 + '503': *200 '422': *15 '304': *37 x-github: @@ -114586,7 +114751,7 @@ paths: type: string format: uri nullable: true - text_matches: *813 + text_matches: *815 related: type: array nullable: true @@ -114779,7 +114944,7 @@ paths: - followers - repositories - joined - - *814 + - *816 - *17 - *19 responses: @@ -114883,7 +115048,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *813 + text_matches: *815 blog: type: string nullable: true @@ -114942,7 +115107,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *198 + '503': *200 '422': *15 x-github: githubCloudOnly: false @@ -114962,7 +115127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &817 + - &819 name: team_id description: The unique identifier of the team. in: path @@ -114974,9 +115139,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '404': *6 x-github: githubCloudOnly: false @@ -115003,7 +115168,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *817 + - *819 requestBody: required: true content: @@ -115066,16 +115231,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '201': description: Response content: application/json: - schema: *470 + schema: *472 examples: - default: *471 + default: *473 '404': *6 '422': *15 '403': *29 @@ -115103,7 +115268,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *817 + - *819 responses: '204': description: Response @@ -115132,7 +115297,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *817 + - *819 - *17 - *19 responses: @@ -115142,9 +115307,9 @@ paths: application/json: schema: type: array - items: *382 + items: *384 examples: - default: *383 + default: *385 headers: Link: *47 x-github: @@ -115170,7 +115335,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *817 + - *819 - name: role description: Filters members returned by their role in the team. in: query @@ -115193,7 +115358,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 '404': *6 @@ -115221,8 +115386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *817 - - *146 + - *819 + - *148 responses: '204': description: if user is a member @@ -115258,8 +115423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *817 - - *146 + - *819 + - *148 responses: '204': description: Response @@ -115298,8 +115463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *817 - - *146 + - *819 + - *148 responses: '204': description: Response @@ -115335,16 +115500,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *817 - - *146 + - *819 + - *148 responses: '200': description: Response content: application/json: - schema: *477 + schema: *479 examples: - response-if-user-is-a-team-maintainer: *818 + response-if-user-is-a-team-maintainer: *820 '404': *6 x-github: githubCloudOnly: false @@ -115377,8 +115542,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *817 - - *146 + - *819 + - *148 requestBody: required: false content: @@ -115403,9 +115568,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *479 examples: - response-if-users-membership-with-team-is-now-pending: *819 + response-if-users-membership-with-team-is-now-pending: *821 '403': description: Forbidden if team synchronization is set up '422': @@ -115439,8 +115604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *817 - - *146 + - *819 + - *148 responses: '204': description: Response @@ -115467,7 +115632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *817 + - *819 - *17 - *19 responses: @@ -115477,9 +115642,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 '404': *6 @@ -115509,15 +115674,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *817 - - *478 - - *479 + - *819 + - *480 + - *481 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *820 + schema: *822 examples: alternative-response-with-extra-repository-information: value: @@ -115668,9 +115833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *817 - - *478 - - *479 + - *819 + - *480 + - *481 requestBody: required: false content: @@ -115720,9 +115885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *817 - - *478 - - *479 + - *819 + - *480 + - *481 responses: '204': description: Response @@ -115751,15 +115916,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *817 + - *819 responses: '200': description: Response content: application/json: - schema: *480 + schema: *482 examples: - default: *481 + default: *483 '403': *29 '404': *6 x-github: @@ -115786,7 +115951,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *817 + - *819 requestBody: required: true content: @@ -115843,7 +116008,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -115874,7 +116039,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *817 + - *819 - *17 - *19 responses: @@ -115884,9 +116049,9 @@ paths: application/json: schema: type: array - items: *317 + items: *319 examples: - response-if-child-teams-exist: *821 + response-if-child-teams-exist: *823 headers: Link: *47 '404': *6 @@ -115919,7 +116084,7 @@ paths: application/json: schema: oneOf: - - &823 + - &825 title: Private User description: Private User type: object @@ -116122,7 +116287,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *822 + - *824 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -116275,7 +116440,7 @@ paths: description: Response content: application/json: - schema: *823 + schema: *825 examples: default: value: @@ -116354,7 +116519,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 '304': *37 '404': *6 '403': *29 @@ -116377,7 +116542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *146 + - *148 responses: '204': description: If the user is blocked @@ -116405,7 +116570,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *146 + - *148 responses: '204': description: Response @@ -116429,7 +116594,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *146 + - *148 responses: '204': description: Response @@ -116478,9 +116643,9 @@ paths: type: integer codespaces: type: array - items: *393 + items: *395 examples: - default: *394 + default: *396 '304': *37 '500': *40 '401': *25 @@ -116619,21 +116784,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '401': *25 '403': *29 '404': *6 - '503': *198 + '503': *200 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116673,7 +116838,7 @@ paths: type: integer secrets: type: array - items: &824 + items: &826 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -116713,7 +116878,7 @@ paths: - visibility - selected_repositories_url examples: - default: *585 + default: *587 headers: Link: *47 x-github: @@ -116783,13 +116948,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *298 + - *300 responses: '200': description: Response content: application/json: - schema: *824 + schema: *826 examples: default: value: @@ -116819,7 +116984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *298 + - *300 requestBody: required: true content: @@ -116864,7 +117029,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -116892,7 +117057,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *298 + - *300 responses: '204': description: Response @@ -116917,7 +117082,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *298 + - *300 responses: '200': description: Response @@ -116933,9 +117098,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *290 examples: - default: *332 + default: *334 '401': *25 '403': *29 '404': *6 @@ -116960,7 +117125,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *298 + - *300 requestBody: required: true content: @@ -117014,7 +117179,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *298 + - *300 - name: repository_id in: path required: true @@ -117047,7 +117212,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *298 + - *300 - name: repository_id in: path required: true @@ -117079,15 +117244,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '304': *37 '500': *40 '401': *25 @@ -117113,7 +117278,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 requestBody: required: false content: @@ -117143,9 +117308,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '401': *25 '403': *29 '404': *6 @@ -117167,7 +117332,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 responses: '202': *39 '304': *37 @@ -117196,13 +117361,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 responses: '202': description: Response content: application/json: - schema: &825 + schema: &827 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -117243,7 +117408,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &826 + default: &828 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -117275,7 +117440,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *395 + - *397 - name: export_id in: path required: true @@ -117288,9 +117453,9 @@ paths: description: Response content: application/json: - schema: *825 + schema: *827 examples: - default: *826 + default: *828 '404': *6 x-github: githubCloudOnly: false @@ -117311,7 +117476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *395 + - *397 responses: '200': description: Response @@ -117327,9 +117492,9 @@ paths: type: integer machines: type: array - items: *827 + items: *829 examples: - default: *828 + default: *830 '304': *37 '500': *40 '401': *25 @@ -117358,7 +117523,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *395 + - *397 requestBody: required: true content: @@ -117408,13 +117573,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *483 + repository: *485 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *583 - required: *584 + properties: *585 + required: *586 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -118188,15 +118353,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '304': *37 '500': *40 '400': *14 @@ -118228,15 +118393,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *395 + - *397 responses: '200': description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *582 + default: *584 '500': *40 '401': *25 '403': *29 @@ -118266,9 +118431,9 @@ paths: application/json: schema: type: array - items: *404 + items: *406 examples: - default: &839 + default: &841 value: - id: 197 name: hello_docker @@ -118369,7 +118534,7 @@ paths: application/json: schema: type: array - items: &829 + items: &831 title: Email description: Email type: object @@ -118434,9 +118599,9 @@ paths: application/json: schema: type: array - items: *829 + items: *831 examples: - default: &841 + default: &843 value: - email: octocat@github.com verified: true @@ -118511,7 +118676,7 @@ paths: application/json: schema: type: array - items: *829 + items: *831 examples: default: value: @@ -118621,7 +118786,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 '304': *37 @@ -118654,7 +118819,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 '304': *37 @@ -118676,7 +118841,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *146 + - *148 responses: '204': description: if the person is followed by the authenticated user @@ -118706,7 +118871,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *146 + - *148 responses: '204': description: Response @@ -118731,7 +118896,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *146 + - *148 responses: '204': description: Response @@ -118767,7 +118932,7 @@ paths: application/json: schema: type: array - items: &830 + items: &832 title: GPG Key description: A unique encryption key type: object @@ -118898,7 +119063,7 @@ paths: - subkeys - revoked examples: - default: &857 + default: &859 value: - id: 3 name: Octocat's GPG Key @@ -118983,9 +119148,9 @@ paths: description: Response content: application/json: - schema: *830 + schema: *832 examples: - default: &831 + default: &833 value: id: 3 name: Octocat's GPG Key @@ -119042,7 +119207,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &832 + - &834 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -119054,9 +119219,9 @@ paths: description: Response content: application/json: - schema: *830 + schema: *832 examples: - default: *831 + default: *833 '404': *6 '304': *37 '403': *29 @@ -119079,7 +119244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *832 + - *834 responses: '204': description: Response @@ -119272,7 +119437,7 @@ paths: allOf: - *80 examples: - default: *283 + default: *285 headers: Link: *47 '404': *6 @@ -119298,7 +119463,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *282 + - *284 responses: '204': description: Response @@ -119324,7 +119489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *282 + - *284 responses: '204': description: Response @@ -119358,12 +119523,12 @@ paths: application/json: schema: anyOf: - - *380 + - *382 - type: object properties: {} additionalProperties: false examples: - default: *381 + default: *383 '204': description: Response when there are no restrictions x-github: @@ -119387,7 +119552,7 @@ paths: required: true content: application/json: - schema: *668 + schema: *670 examples: default: value: @@ -119398,7 +119563,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: default: value: @@ -119479,7 +119644,7 @@ paths: - closed - all default: open - - *391 + - *393 - name: sort description: What to sort results by. in: query @@ -119492,7 +119657,7 @@ paths: - comments default: created - *112 - - *234 + - *236 - *17 - *19 responses: @@ -119502,9 +119667,9 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: - default: *392 + default: *394 headers: Link: *47 '404': *6 @@ -119537,7 +119702,7 @@ paths: application/json: schema: type: array - items: &833 + items: &835 title: Key description: Key type: object @@ -119638,9 +119803,9 @@ paths: description: Response content: application/json: - schema: *833 + schema: *835 examples: - default: &834 + default: &836 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119673,15 +119838,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *703 + - *705 responses: '200': description: Response content: application/json: - schema: *833 + schema: *835 examples: - default: *834 + default: *836 '404': *6 '304': *37 '403': *29 @@ -119704,7 +119869,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *703 + - *705 responses: '204': description: Response @@ -119737,7 +119902,7 @@ paths: application/json: schema: type: array - items: &835 + items: &837 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119794,7 +119959,7 @@ paths: - id - type - login - plan: *245 + plan: *247 required: - billing_cycle - next_billing_date @@ -119805,7 +119970,7 @@ paths: - account - plan examples: - default: &836 + default: &838 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119867,9 +120032,9 @@ paths: application/json: schema: type: array - items: *835 + items: *837 examples: - default: *836 + default: *838 headers: Link: *47 '304': *37 @@ -119909,7 +120074,7 @@ paths: application/json: schema: type: array - items: *396 + items: *398 examples: default: value: @@ -120023,7 +120188,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: default: value: @@ -120110,7 +120275,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: default: value: @@ -120182,7 +120347,7 @@ paths: application/json: schema: type: array - items: *398 + items: *400 examples: default: value: @@ -120435,7 +120600,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -120615,7 +120780,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *399 + - *401 - name: exclude in: query required: false @@ -120628,7 +120793,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -120822,7 +120987,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *399 + - *401 responses: '302': description: Response @@ -120848,7 +121013,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *399 + - *401 responses: '204': description: Response @@ -120877,8 +121042,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *399 - - *837 + - *401 + - *839 responses: '204': description: Response @@ -120902,7 +121067,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *399 + - *401 - *17 - *19 responses: @@ -120912,9 +121077,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 '404': *6 @@ -120951,7 +121116,7 @@ paths: type: array items: *75 examples: - default: *258 + default: *260 headers: Link: *47 '304': *37 @@ -120993,7 +121158,7 @@ paths: - docker - nuget - container - - *838 + - *840 - *19 - *17 responses: @@ -121003,10 +121168,10 @@ paths: application/json: schema: type: array - items: *404 + items: *406 examples: - default: *839 - '400': *840 + default: *841 + '400': *842 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121026,16 +121191,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 + - *409 responses: '200': description: Response content: application/json: - schema: *404 + schema: *406 examples: - default: &858 + default: &860 value: id: 40201 name: octo-name @@ -121148,8 +121313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 + - *409 responses: '204': description: Response @@ -121179,8 +121344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 + - *409 - name: token description: package token schema: @@ -121212,8 +121377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *406 - - *407 + - *408 + - *409 - *19 - *17 - name: state @@ -121233,7 +121398,7 @@ paths: application/json: schema: type: array - items: *408 + items: *410 examples: default: value: @@ -121282,15 +121447,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 - *409 + - *411 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: default: value: @@ -121326,9 +121491,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 - *409 + - *411 responses: '204': description: Response @@ -121358,9 +121523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *406 - - *407 + - *408 - *409 + - *411 responses: '204': description: Response @@ -121397,9 +121562,9 @@ paths: application/json: schema: type: array - items: *829 + items: *831 examples: - default: *841 + default: *843 headers: Link: *47 '304': *37 @@ -121512,7 +121677,7 @@ paths: type: array items: *80 examples: - default: &848 + default: &850 summary: Default response value: - id: 1296269 @@ -121816,9 +121981,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: - default: *485 + default: *487 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121856,9 +122021,9 @@ paths: application/json: schema: type: array - items: *670 + items: *672 examples: - default: *842 + default: *844 headers: Link: *47 '304': *37 @@ -121881,7 +122046,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *384 + - *386 responses: '204': description: Response @@ -121904,7 +122069,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *384 + - *386 responses: '204': description: Response @@ -121937,7 +122102,7 @@ paths: application/json: schema: type: array - items: &843 + items: &845 title: Social account description: Social media account type: object @@ -121952,7 +122117,7 @@ paths: - provider - url examples: - default: &844 + default: &846 value: - provider: twitter url: https://twitter.com/github @@ -122014,9 +122179,9 @@ paths: application/json: schema: type: array - items: *843 + items: *845 examples: - default: *844 + default: *846 '422': *15 '304': *37 '404': *6 @@ -122103,7 +122268,7 @@ paths: application/json: schema: type: array - items: &845 + items: &847 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -122123,7 +122288,7 @@ paths: - title - created_at examples: - default: &872 + default: &874 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -122187,9 +122352,9 @@ paths: description: Response content: application/json: - schema: *845 + schema: *847 examples: - default: &846 + default: &848 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -122219,7 +122384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &847 + - &849 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -122231,9 +122396,9 @@ paths: description: Response content: application/json: - schema: *845 + schema: *847 examples: - default: *846 + default: *848 '404': *6 '304': *37 '403': *29 @@ -122256,7 +122421,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *847 + - *849 responses: '204': description: Response @@ -122285,7 +122450,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &873 + - &875 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 @@ -122310,11 +122475,11 @@ paths: type: array items: *80 examples: - default-response: *848 + default-response: *850 application/vnd.github.v3.star+json: schema: type: array - items: &874 + items: &876 title: Starred Repository description: Starred Repository type: object @@ -122470,8 +122635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response if this repository is starred by you @@ -122499,8 +122664,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -122524,8 +122689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *478 - - *479 + - *480 + - *481 responses: '204': description: Response @@ -122558,9 +122723,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 '304': *37 @@ -122597,7 +122762,7 @@ paths: application/json: schema: type: array - items: *470 + items: *472 examples: default: value: @@ -122675,7 +122840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *247 + - *249 responses: '200': description: Response @@ -122683,10 +122848,10 @@ paths: application/json: schema: oneOf: - - *823 - - *822 + - *825 + - *824 examples: - default-response: &852 + default-response: &854 summary: Default response value: login: octocat @@ -122721,7 +122886,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &853 + response-with-git-hub-plan-information: &855 summary: Response with GitHub plan information value: login: octocat @@ -122778,14 +122943,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &850 + - &852 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *422 + - *424 requestBody: required: true description: Details of the draft item to create in the project. @@ -122819,9 +122984,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *430 examples: - draft_issue: *429 + draft_issue: *431 '304': *37 '403': *29 '401': *25 @@ -122844,7 +123009,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *849 + - *851 - *17 responses: '200': @@ -122855,7 +123020,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: example: ; rel="next" @@ -122879,8 +123044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *850 - - *422 + - *852 + - *424 requestBody: required: true content: @@ -122951,17 +123116,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *851 + schema: *853 examples: table_view: summary: Response for creating a table view - value: *433 + value: *435 board_view: summary: Response for creating a board view with filter - value: *433 + value: *435 roadmap_view: summary: Response for creating a roadmap view - value: *433 + value: *435 '304': *37 '403': *29 '401': *25 @@ -122995,7 +123160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *146 + - *148 responses: '200': description: Response @@ -123003,11 +123168,11 @@ paths: application/json: schema: oneOf: - - *823 - - *822 + - *825 + - *824 examples: - default-response: *852 - response-with-git-hub-plan-information: *853 + default-response: *854 + response-with-git-hub-plan-information: *855 '404': *6 x-github: githubCloudOnly: false @@ -123033,7 +123198,7 @@ paths: - *17 - *110 - *111 - - *146 + - *148 requestBody: required: true content: @@ -123057,8 +123222,8 @@ paths: required: - subject_digests examples: - default: *854 - withPredicateType: *855 + default: *856 + withPredicateType: *857 responses: '200': description: Response @@ -123111,7 +123276,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *856 + default: *858 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -123129,7 +123294,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *146 + - *148 requestBody: required: true content: @@ -123194,7 +123359,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *146 + - *148 - name: subject_digest description: Subject Digest in: path @@ -123225,7 +123390,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *146 + - *148 - name: attestation_id description: Attestation ID in: path @@ -123263,7 +123428,7 @@ paths: - *17 - *110 - *111 - - *146 + - *148 - name: subject_digest description: Subject Digest in: path @@ -123316,12 +123481,12 @@ paths: initiator: type: string examples: - default: *525 + default: *527 '201': description: Response content: application/json: - schema: *299 + schema: *301 examples: default: value: @@ -123347,7 +123512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *146 + - *148 responses: '200': description: Response @@ -123355,9 +123520,9 @@ paths: application/json: schema: type: array - items: *404 + items: *406 examples: - default: *839 + default: *841 '403': *29 '401': *25 x-github: @@ -123380,7 +123545,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123390,7 +123555,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -123452,7 +123617,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *146 + - *148 - *89 - *17 - *19 @@ -123463,7 +123628,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -123540,7 +123705,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123550,7 +123715,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -123608,7 +123773,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123620,7 +123785,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -123639,7 +123804,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123651,7 +123816,7 @@ paths: type: array items: *4 examples: - default: *216 + default: *218 headers: Link: *47 x-github: @@ -123670,7 +123835,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *146 + - *148 - name: target_user in: path required: true @@ -123697,8 +123862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *146 - - *234 + - *148 + - *236 - *17 - *19 responses: @@ -123708,9 +123873,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *236 + default: *238 headers: Link: *47 '422': *15 @@ -123731,7 +123896,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123741,9 +123906,9 @@ paths: application/json: schema: type: array - items: *830 + items: *832 examples: - default: *857 + default: *859 headers: Link: *47 x-github: @@ -123767,7 +123932,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *146 + - *148 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -123839,7 +124004,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *146 + - *148 responses: '200': description: Response @@ -123847,7 +124012,7 @@ paths: application/json: schema: *22 examples: - default: *378 + default: *380 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123865,7 +124030,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123920,7 +124085,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -123932,7 +124097,7 @@ paths: type: array items: *75 examples: - default: *258 + default: *260 headers: Link: *47 x-github: @@ -123971,8 +124136,8 @@ paths: - docker - nuget - container - - *838 - - *146 + - *840 + - *148 - *19 - *17 responses: @@ -123982,12 +124147,12 @@ paths: application/json: schema: type: array - items: *404 + items: *406 examples: - default: *839 + default: *841 '403': *29 '401': *25 - '400': *840 + '400': *842 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124007,17 +124172,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *406 - - *407 - - *146 + - *408 + - *409 + - *148 responses: '200': description: Response content: application/json: - schema: *404 + schema: *406 examples: - default: *858 + default: *860 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124038,9 +124203,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *406 - - *407 - - *146 + - *408 + - *409 + - *148 responses: '204': description: Response @@ -124072,9 +124237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *406 - - *407 - - *146 + - *408 + - *409 + - *148 - name: token description: package token schema: @@ -124106,9 +124271,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *406 - - *407 - - *146 + - *408 + - *409 + - *148 responses: '200': description: Response @@ -124116,7 +124281,7 @@ paths: application/json: schema: type: array - items: *408 + items: *410 examples: default: value: @@ -124174,16 +124339,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *406 - - *407 + - *408 - *409 - - *146 + - *411 + - *148 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: default: value: @@ -124218,10 +124383,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *406 - - *407 - - *146 + - *408 - *409 + - *148 + - *411 responses: '204': description: Response @@ -124253,10 +124418,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *406 - - *407 - - *146 + - *408 - *409 + - *148 + - *411 responses: '204': description: Response @@ -124280,7 +124445,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *146 + - *148 - name: q description: Limit results to projects of the specified type. in: query @@ -124297,9 +124462,9 @@ paths: application/json: schema: type: array - items: *420 + items: *422 examples: - default: *421 + default: *423 headers: Link: *47 '304': *37 @@ -124321,16 +124486,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *422 - - *146 + - *424 + - *148 responses: '200': description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 headers: Link: *47 '304': *37 @@ -124352,8 +124517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *422 - - *146 + - *424 + - *148 - *17 - *110 - *111 @@ -124364,9 +124529,9 @@ paths: application/json: schema: type: array - items: *426 + items: *428 examples: - default: *859 + default: *861 headers: Link: *47 '304': *37 @@ -124387,8 +124552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - - *146 - - *422 + - *148 + - *424 requestBody: required: true content: @@ -124426,7 +124591,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *860 + items: *862 required: - name - data_type @@ -124442,7 +124607,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *861 + iteration_configuration: *863 required: - name - data_type @@ -124464,20 +124629,20 @@ paths: value: name: Due date data_type: date - single_select_field: *862 - iteration_field: *863 + single_select_field: *864 + iteration_field: *865 responses: '201': description: Response content: application/json: - schema: *426 + schema: *428 examples: - text_field: *864 - number_field: *865 - date_field: *866 - single_select_field: *867 - iteration_field: *868 + text_field: *866 + number_field: *867 + date_field: *868 + single_select_field: *869 + iteration_field: *870 '304': *37 '403': *29 '401': *25 @@ -124498,17 +124663,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *422 - - *869 - - *146 + - *424 + - *871 + - *148 responses: '200': description: Response content: application/json: - schema: *426 + schema: *428 examples: - default: *870 + default: *872 headers: Link: *47 '304': *37 @@ -124531,8 +124696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *422 - - *146 + - *424 + - *148 - *110 - *111 - *17 @@ -124564,9 +124729,9 @@ paths: application/json: schema: type: array - items: *430 + items: *432 examples: - default: *431 + default: *433 headers: Link: *47 '304': *37 @@ -124587,8 +124752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *146 - - *422 + - *148 + - *424 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -124658,22 +124823,22 @@ paths: description: Response content: application/json: - schema: *428 + schema: *430 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *429 + value: *431 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *429 + value: *431 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *429 + value: *431 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *429 + value: *431 '304': *37 '403': *29 '401': *25 @@ -124693,9 +124858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *422 - - *146 - - *432 + - *424 + - *148 + - *434 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -124715,9 +124880,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *432 examples: - default: *431 + default: *433 headers: Link: *47 '304': *37 @@ -124738,9 +124903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *422 - - *146 - - *432 + - *424 + - *148 + - *434 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -124810,13 +124975,13 @@ paths: description: Response content: application/json: - schema: *430 + schema: *432 examples: - text_field: *431 - number_field: *431 - date_field: *431 - single_select_field: *431 - iteration_field: *431 + text_field: *433 + number_field: *433 + date_field: *433 + single_select_field: *433 + iteration_field: *433 '401': *25 '403': *29 '404': *6 @@ -124836,9 +125001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *422 - - *146 - - *432 + - *424 + - *148 + - *434 responses: '204': description: Response @@ -124860,9 +125025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-project-view parameters: - - *422 - - *146 - - *871 + - *424 + - *148 + - *873 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -124888,9 +125053,9 @@ paths: application/json: schema: type: array - items: *430 + items: *432 examples: - default: *431 + default: *433 headers: Link: *47 '304': *37 @@ -124918,7 +125083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -124928,7 +125093,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -124993,7 +125158,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -125003,7 +125168,7 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: default: value: @@ -125066,7 +125231,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *146 + - *148 - name: type description: Limit results to repositories of the specified type. in: query @@ -125109,9 +125274,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -125131,7 +125296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -125141,9 +125306,9 @@ paths: application/json: schema: type: array - items: *843 + items: *845 examples: - default: *844 + default: *846 headers: Link: *47 x-github: @@ -125163,7 +125328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -125173,9 +125338,9 @@ paths: application/json: schema: type: array - items: *845 + items: *847 examples: - default: *872 + default: *874 headers: Link: *47 x-github: @@ -125199,8 +125364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *146 - - *873 + - *148 + - *875 - *112 - *17 - *19 @@ -125212,11 +125377,11 @@ paths: schema: anyOf: - type: array - items: *874 + items: *876 - type: array items: *80 examples: - default-response: *848 + default-response: *850 headers: Link: *47 x-github: @@ -125235,7 +125400,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *146 + - *148 - *17 - *19 responses: @@ -125245,9 +125410,9 @@ paths: application/json: schema: type: array - items: *288 + items: *290 examples: - default: *410 + default: *412 headers: Link: *47 x-github: @@ -125375,7 +125540,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &875 + enterprise: &877 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -125433,7 +125598,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &876 + installation: &878 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -125452,7 +125617,7 @@ x-webhooks: required: - id - node_id - organization: &877 + organization: &879 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -125512,13 +125677,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &878 + repository: &880 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: &917 + properties: &919 id: description: Unique identifier of the repository example: 42 @@ -125538,8 +125703,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *230 - required: *231 + properties: *232 + required: *233 nullable: true organization: title: Simple User @@ -126213,7 +126378,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &918 + required: &920 - archive_url - assignees_url - blobs_url @@ -126364,10 +126529,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -126443,11 +126608,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - rule: &879 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + rule: &881 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -126670,11 +126835,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - rule: *879 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + rule: *881 sender: *4 required: - action @@ -126857,11 +127022,11 @@ x-webhooks: - everyone required: - from - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - rule: *879 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + rule: *881 sender: *4 required: - action @@ -126934,7 +127099,7 @@ x-webhooks: required: true content: application/json: - schema: &901 + schema: &903 title: Exemption request cancellation event type: object properties: @@ -126942,11 +127107,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - exemption_request: &880 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + exemption_request: &882 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -127250,7 +127415,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &881 + items: &883 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -127360,7 +127525,7 @@ x-webhooks: required: true content: application/json: - schema: &902 + schema: &904 title: Exemption request completed event type: object properties: @@ -127368,11 +127533,11 @@ x-webhooks: type: string enum: - completed - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - exemption_request: *880 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + exemption_request: *882 sender: *4 required: - action @@ -127444,7 +127609,7 @@ x-webhooks: required: true content: application/json: - schema: &899 + schema: &901 title: Exemption request created event type: object properties: @@ -127452,11 +127617,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - exemption_request: *880 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + exemption_request: *882 sender: *4 required: - action @@ -127528,7 +127693,7 @@ x-webhooks: required: true content: application/json: - schema: &903 + schema: &905 title: Exemption response dismissed event type: object properties: @@ -127536,12 +127701,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - exemption_request: *880 - exemption_response: *881 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + exemption_request: *882 + exemption_response: *883 sender: *4 required: - action @@ -127615,7 +127780,7 @@ x-webhooks: required: true content: application/json: - schema: &900 + schema: &902 title: Exemption response submitted event type: object properties: @@ -127623,12 +127788,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - exemption_request: *880 - exemption_response: *881 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + exemption_request: *882 + exemption_response: *883 sender: *4 required: - action @@ -127712,7 +127877,7 @@ x-webhooks: type: string enum: - completed - check_run: &883 + check_run: &885 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127765,8 +127930,8 @@ x-webhooks: type: string pull_requests: type: array - items: *232 - repository: *288 + items: *234 + repository: *290 status: example: completed type: string @@ -127803,7 +127968,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *882 + deployment: *884 details_url: example: https://example.com type: string @@ -127853,7 +128018,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *232 + items: *234 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -127888,10 +128053,10 @@ x-webhooks: - output - app - pull_requests - installation: *876 - enterprise: *875 - organization: *877 - repository: *878 + installation: *878 + enterprise: *877 + organization: *879 + repository: *880 sender: *4 required: - check_run @@ -128282,11 +128447,11 @@ x-webhooks: type: string enum: - created - check_run: *883 - installation: *876 - enterprise: *875 - organization: *877 - repository: *878 + check_run: *885 + installation: *878 + enterprise: *877 + organization: *879 + repository: *880 sender: *4 required: - check_run @@ -128680,11 +128845,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *883 - installation: *876 - enterprise: *875 - organization: *877 - repository: *878 + check_run: *885 + installation: *878 + enterprise: *877 + organization: *879 + repository: *880 requested_action: description: The action requested by the user. type: object @@ -129087,11 +129252,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *883 - installation: *876 - enterprise: *875 - organization: *877 - repository: *878 + check_run: *885 + installation: *878 + enterprise: *877 + organization: *879 + repository: *880 sender: *4 required: - check_run @@ -130061,10 +130226,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -130753,10 +130918,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -131439,10 +131604,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -131608,7 +131773,7 @@ x-webhooks: required: - login - id - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -131753,20 +131918,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &884 + commit_oid: &886 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: *875 - installation: *876 - organization: *877 - ref: &885 + enterprise: *877 + installation: *878 + organization: *879 + ref: &887 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: *878 + repository: *880 sender: *4 required: - action @@ -131931,7 +132096,7 @@ x-webhooks: required: - login - id - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -132161,12 +132326,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *884 - enterprise: *875 - installation: *876 - organization: *877 - ref: *885 - repository: *878 + commit_oid: *886 + enterprise: *877 + installation: *878 + organization: *879 + ref: *887 + repository: *880 sender: *4 required: - action @@ -132261,7 +132426,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132432,12 +132597,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *884 - enterprise: *875 - installation: *876 - organization: *877 - ref: *885 - repository: *878 + commit_oid: *886 + enterprise: *877 + installation: *878 + organization: *879 + ref: *887 + repository: *880 sender: *4 required: - action @@ -132603,7 +132768,7 @@ x-webhooks: required: - login - id - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -132769,12 +132934,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *884 - enterprise: *875 - installation: *876 - organization: *877 - ref: *885 - repository: *878 + commit_oid: *886 + enterprise: *877 + installation: *878 + organization: *879 + ref: *887 + repository: *880 sender: *4 required: - action @@ -132873,7 +133038,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133048,16 +133213,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 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: *878 + repository: *880 sender: *4 required: - action @@ -133154,7 +133319,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133294,12 +133459,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *884 - enterprise: *875 - installation: *876 - organization: *877 - ref: *885 - repository: *878 + commit_oid: *886 + enterprise: *877 + installation: *878 + organization: *879 + ref: *887 + repository: *880 sender: *4 required: - action @@ -133465,7 +133630,7 @@ x-webhooks: required: - login - id - dismissed_comment: *554 + dismissed_comment: *556 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -133610,10 +133775,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -133868,10 +134033,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -133951,18 +134116,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *877 - pusher_type: &886 + organization: *879 + pusher_type: &888 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &887 + ref: &889 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133972,7 +134137,7 @@ x-webhooks: enum: - tag - branch - repository: *878 + repository: *880 sender: *4 required: - ref @@ -134054,10 +134219,10 @@ x-webhooks: type: string enum: - created - definition: *159 - enterprise: *875 - installation: *876 - organization: *877 + definition: *161 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 required: - action @@ -134142,9 +134307,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 required: - action @@ -134221,10 +134386,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *159 - enterprise: *875 - installation: *876 - organization: *877 + definition: *161 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 required: - action @@ -134301,10 +134466,10 @@ x-webhooks: type: string enum: - updated - definition: *159 - enterprise: *875 - installation: *876 - organization: *877 + definition: *161 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 required: - action @@ -134381,19 +134546,19 @@ x-webhooks: type: string enum: - updated - enterprise: *875 - installation: *876 - repository: *878 - organization: *877 + enterprise: *877 + installation: *878 + repository: *880 + organization: *879 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *158 + items: *160 old_property_values: type: array description: The old custom property values for the repository. - items: *158 + items: *160 required: - action - repository @@ -134469,18 +134634,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *875 - installation: *876 - organization: *877 - pusher_type: *886 - ref: *887 + enterprise: *877 + installation: *878 + organization: *879 + pusher_type: *888 + ref: *889 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *878 + repository: *880 sender: *4 required: - ref @@ -134560,11 +134725,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -134644,11 +134809,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -134729,11 +134894,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -134814,11 +134979,11 @@ x-webhooks: type: string enum: - created - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -134897,11 +135062,11 @@ x-webhooks: type: string enum: - dismissed - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -134980,11 +135145,11 @@ x-webhooks: type: string enum: - fixed - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -135064,11 +135229,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -135147,11 +135312,11 @@ x-webhooks: type: string enum: - reopened - alert: *618 - installation: *876 - organization: *877 - enterprise: *875 - repository: *878 + alert: *620 + installation: *878 + organization: *879 + enterprise: *877 + repository: *880 sender: *4 required: - action @@ -135228,9 +135393,9 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - key: &888 + enterprise: *877 + installation: *878 + key: &890 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -135266,8 +135431,8 @@ x-webhooks: - verified - created_at - read_only - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -135344,11 +135509,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - key: *888 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + key: *890 + organization: *879 + repository: *880 sender: *4 required: - action @@ -135904,12 +136069,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - workflow: &894 + workflow: &896 title: Workflow type: object nullable: true @@ -136650,15 +136815,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *889 - required: *890 + properties: *891 + required: *892 nullable: true pull_requests: type: array - items: *724 - repository: *878 - organization: *877 - installation: *876 + items: *726 + repository: *880 + organization: *879 + installation: *878 sender: *4 responses: '200': @@ -136729,7 +136894,7 @@ x-webhooks: type: string enum: - approved - approver: &891 + approver: &893 type: object properties: avatar_url: @@ -136772,11 +136937,11 @@ x-webhooks: type: string comment: type: string - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - reviewers: &892 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + reviewers: &894 type: array items: type: object @@ -136855,7 +137020,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &893 + workflow_job_run: &895 type: object properties: conclusion: @@ -137586,18 +137751,18 @@ x-webhooks: type: string enum: - rejected - approver: *891 + approver: *893 comment: type: string - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - reviewers: *892 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + reviewers: *894 sender: *4 since: type: string - workflow_job_run: *893 + workflow_job_run: *895 workflow_job_runs: type: array items: @@ -138301,13 +138466,13 @@ x-webhooks: type: string enum: - requested - enterprise: *875 + enterprise: *877 environment: type: string - installation: *876 - organization: *877 - repository: *878 - requestor: &904 + installation: *878 + organization: *879 + repository: *880 + requestor: &906 title: User type: object nullable: true @@ -140196,12 +140361,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - workflow: *894 + workflow: *896 workflow_run: title: Deployment Workflow Run type: object @@ -140881,7 +141046,7 @@ x-webhooks: type: string enum: - answered - answer: &897 + answer: &899 type: object properties: author_association: @@ -141038,11 +141203,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141169,11 +141334,11 @@ x-webhooks: - from required: - category - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141256,11 +141421,11 @@ x-webhooks: type: string enum: - closed - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141342,7 +141507,7 @@ x-webhooks: type: string enum: - created - comment: &896 + comment: &898 type: object properties: author_association: @@ -141499,11 +141664,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141586,12 +141751,12 @@ x-webhooks: type: string enum: - deleted - comment: *896 - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + comment: *898 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141686,12 +141851,12 @@ x-webhooks: - from required: - body - comment: *896 - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + comment: *898 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141775,11 +141940,11 @@ x-webhooks: type: string enum: - created - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141861,11 +142026,11 @@ x-webhooks: type: string enum: - deleted - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -141965,11 +142130,11 @@ x-webhooks: type: string required: - from - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142051,10 +142216,10 @@ x-webhooks: type: string enum: - labeled - discussion: *895 - enterprise: *875 - installation: *876 - label: &898 + discussion: *897 + enterprise: *877 + installation: *878 + label: &900 title: Label type: object properties: @@ -142086,8 +142251,8 @@ x-webhooks: - color - default - description - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142170,11 +142335,11 @@ x-webhooks: type: string enum: - locked - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142256,11 +142421,11 @@ x-webhooks: type: string enum: - pinned - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142342,11 +142507,11 @@ x-webhooks: type: string enum: - reopened - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142431,16 +142596,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *895 - new_repository: *878 + new_discussion: *897 + new_repository: *880 required: - new_discussion - new_repository - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142523,10 +142688,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *895 - old_answer: *897 - organization: *877 - repository: *878 + discussion: *897 + old_answer: *899 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142608,12 +142773,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *895 - enterprise: *875 - installation: *876 - label: *898 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142696,11 +142861,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142782,11 +142947,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *895 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + discussion: *897 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -142855,7 +143020,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142918,7 +143083,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142981,7 +143146,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143044,7 +143209,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143107,7 +143272,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143173,7 +143338,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143239,7 +143404,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143305,7 +143470,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143371,7 +143536,7 @@ x-webhooks: required: true content: application/json: - schema: *903 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143437,7 +143602,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143502,7 +143667,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143567,7 +143732,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143632,7 +143797,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143697,7 +143862,7 @@ x-webhooks: required: true content: application/json: - schema: *903 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143763,7 +143928,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143830,7 +143995,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *875 + enterprise: *877 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -144490,9 +144655,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *876 - organization: *877 - repository: *878 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - forkee @@ -144638,9 +144803,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pages: description: The pages that were updated. type: array @@ -144677,7 +144842,7 @@ x-webhooks: - action - sha - html_url - repository: *878 + repository: *880 sender: *4 required: - pages @@ -144753,10 +144918,10 @@ x-webhooks: type: string enum: - created - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories: &905 + organization: *879 + repositories: &907 description: An array of repository objects that the installation can access. type: array @@ -144782,8 +144947,8 @@ x-webhooks: - name - full_name - private - repository: *878 - requester: *904 + repository: *880 + requester: *906 sender: *4 required: - action @@ -144858,11 +145023,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories: *905 - repository: *878 + organization: *879 + repositories: *907 + repository: *880 requester: nullable: true sender: *4 @@ -144938,11 +145103,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories: *905 - repository: *878 + organization: *879 + repositories: *907 + repository: *880 requester: nullable: true sender: *4 @@ -145018,10 +145183,10 @@ x-webhooks: type: string enum: - added - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories_added: &906 + organization: *879 + repositories_added: &908 description: An array of repository objects, which were added to the installation. type: array @@ -145067,15 +145232,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *878 - repository_selection: &907 + repository: *880 + repository_selection: &909 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *904 + requester: *906 sender: *4 required: - action @@ -145154,10 +145319,10 @@ x-webhooks: type: string enum: - removed - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories_added: *906 + organization: *879 + repositories_added: *908 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -145184,9 +145349,9 @@ x-webhooks: - name - full_name - private - repository: *878 - repository_selection: *907 - requester: *904 + repository: *880 + repository_selection: *909 + requester: *906 sender: *4 required: - action @@ -145265,11 +145430,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories: *905 - repository: *878 + organization: *879 + repositories: *907 + repository: *880 requester: nullable: true sender: *4 @@ -145448,10 +145613,10 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 target_type: type: string @@ -145530,11 +145695,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *875 + enterprise: *877 installation: *22 - organization: *877 - repositories: *905 - repository: *878 + organization: *879 + repositories: *907 + repository: *880 requester: nullable: true sender: *4 @@ -145658,8 +145823,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *222 - required: *223 + properties: *224 + required: *225 reactions: title: Reactions type: object @@ -145708,8 +145873,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *699 - required: *700 + properties: *701 + required: *702 nullable: true user: title: User @@ -145794,8 +145959,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146584,8 +146749,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146601,7 +146766,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -146934,8 +147099,8 @@ x-webhooks: - state - locked - assignee - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -147015,7 +147180,7 @@ x-webhooks: type: string enum: - deleted - comment: &908 + comment: &910 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -147172,8 +147337,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *699 - required: *700 + properties: *701 + required: *702 nullable: true required: - url @@ -147188,8 +147353,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147974,8 +148139,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147991,7 +148156,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -148326,8 +148491,8 @@ x-webhooks: - state - locked - assignee - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -148407,7 +148572,7 @@ x-webhooks: type: string enum: - edited - changes: &937 + changes: &939 description: The changes to the comment. type: object properties: @@ -148419,9 +148584,9 @@ x-webhooks: type: string required: - from - comment: *908 - enterprise: *875 - installation: *876 + comment: *910 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149209,8 +149374,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149226,7 +149391,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -149559,8 +149724,8 @@ x-webhooks: - state - locked - assignee - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -149641,9 +149806,9 @@ x-webhooks: type: string enum: - pinned - comment: *908 - enterprise: *875 - installation: *876 + comment: *910 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150433,8 +150598,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150450,7 +150615,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -150785,8 +150950,8 @@ x-webhooks: - state - locked - assignee - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -150866,9 +151031,9 @@ x-webhooks: type: string enum: - unpinned - comment: *908 - enterprise: *875 - installation: *876 + comment: *910 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -151658,8 +151823,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151675,7 +151840,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -152010,8 +152175,8 @@ x-webhooks: - state - locked - assignee - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -152094,15 +152259,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *227 + blocked_issue: *229 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *227 + blocking_issue: *229 blocking_issue_repo: *80 - installation: *876 - organization: *877 - repository: *878 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -152185,15 +152350,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *227 + blocked_issue: *229 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *227 + blocking_issue: *229 blocking_issue_repo: *80 - installation: *876 - organization: *877 - repository: *878 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -152275,15 +152440,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *227 + blocked_issue: *229 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *227 - installation: *876 - organization: *877 - repository: *878 + blocking_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -152366,15 +152531,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *227 + blocked_issue: *229 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *227 - installation: *876 - organization: *877 - repository: *878 + blocking_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -152454,10 +152619,10 @@ x-webhooks: type: string enum: - assigned - assignee: *904 - enterprise: *875 - installation: *876 - issue: &911 + assignee: *906 + enterprise: *877 + installation: *878 + issue: &913 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153246,14 +153411,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153269,7 +153434,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -153370,8 +153535,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -153451,8 +153616,8 @@ x-webhooks: type: string enum: - closed - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -154246,14 +154411,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154269,7 +154434,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -154505,8 +154670,8 @@ x-webhooks: required: - state - closed_at - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -154585,8 +154750,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155371,14 +155536,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155394,7 +155559,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -155494,8 +155659,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -155574,8 +155739,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156382,14 +156547,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156405,7 +156570,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -156484,7 +156649,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &909 + milestone: &911 title: Milestone description: A collection of related issues and pull requests. type: object @@ -156622,8 +156787,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -156722,8 +156887,8 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157512,14 +157677,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157532,7 +157697,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *388 + type: *390 title: description: Title of the issue type: string @@ -157636,9 +157801,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *898 - organization: *877 - repository: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -157718,8 +157883,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158507,14 +158672,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158527,7 +158692,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *388 + type: *390 title: description: Title of the issue type: string @@ -158631,9 +158796,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *898 - organization: *877 - repository: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -158713,8 +158878,8 @@ x-webhooks: type: string enum: - locked - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159526,14 +159691,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159546,7 +159711,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *388 + type: *390 title: description: Title of the issue type: string @@ -159627,8 +159792,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -159707,8 +159872,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160514,14 +160679,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160537,7 +160702,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -160615,9 +160780,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *909 - organization: *877 - repository: *878 + milestone: *911 + organization: *879 + repository: *880 sender: *4 required: - action @@ -161480,11 +161645,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161512,8 +161677,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true user: title: User @@ -161585,7 +161750,7 @@ x-webhooks: required: - login - id - type: *388 + type: *390 required: - id - number @@ -162065,8 +162230,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162850,11 +163015,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162870,7 +163035,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -162883,8 +163048,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true user: title: User @@ -162978,8 +163143,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -163059,9 +163224,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *875 - installation: *876 - issue: &910 + enterprise: *877 + installation: *878 + issue: &912 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -163844,14 +164009,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163867,7 +164032,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -163967,8 +164132,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -164047,8 +164212,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164858,14 +165023,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164959,9 +165124,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *388 - organization: *877 - repository: *878 + type: *390 + organization: *879 + repository: *880 sender: *4 required: - action @@ -165827,14 +165992,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165850,7 +166015,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -166429,11 +166594,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *875 - installation: *876 - issue: *910 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *912 + organization: *879 + repository: *880 sender: *4 required: - action @@ -166513,12 +166678,12 @@ x-webhooks: type: string enum: - typed - enterprise: *875 - installation: *876 - issue: *911 - type: *388 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *913 + type: *390 + organization: *879 + repository: *880 sender: *4 required: - action @@ -166599,7 +166764,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &940 + assignee: &942 title: User type: object nullable: true @@ -166669,11 +166834,11 @@ x-webhooks: required: - login - id - enterprise: *875 - installation: *876 - issue: *911 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *913 + organization: *879 + repository: *880 sender: *4 required: - action @@ -166752,12 +166917,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *875 - installation: *876 - issue: *911 - label: *898 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *913 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -166837,8 +167002,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -167648,14 +167813,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true - sub_issues_summary: *815 - issue_dependencies_summary: *816 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *683 + items: *685 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167671,7 +167836,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *388 + type: *390 updated_at: type: string format: date-time @@ -167749,8 +167914,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -167830,11 +167995,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *875 - installation: *876 - issue: *910 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *912 + organization: *879 + repository: *880 sender: *4 required: - action @@ -167913,12 +168078,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *875 - installation: *876 - issue: *911 - type: *388 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + issue: *913 + type: *390 + organization: *879 + repository: *880 sender: *4 required: - action @@ -167998,11 +168163,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - label: *898 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -168080,11 +168245,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - label: *898 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -168194,11 +168359,11 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - label: *898 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + label: *900 + organization: *879 + repository: *880 sender: *4 required: - action @@ -168280,9 +168445,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *875 - installation: *876 - marketplace_purchase: &912 + enterprise: *877 + installation: *878 + marketplace_purchase: &914 title: Marketplace Purchase type: object required: @@ -168365,8 +168530,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *877 - previous_marketplace_purchase: &913 + organization: *879 + previous_marketplace_purchase: &915 title: Marketplace Purchase type: object properties: @@ -168446,7 +168611,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *878 + repository: *880 sender: *4 required: - action @@ -168526,10 +168691,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *875 - installation: *876 - marketplace_purchase: *912 - organization: *877 + enterprise: *877 + installation: *878 + marketplace_purchase: *914 + organization: *879 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168612,7 +168777,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *878 + repository: *880 sender: *4 required: - action @@ -168694,10 +168859,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *875 - installation: *876 - marketplace_purchase: *912 - organization: *877 + enterprise: *877 + installation: *878 + marketplace_purchase: *914 + organization: *879 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168779,7 +168944,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *878 + repository: *880 sender: *4 required: - action @@ -168860,8 +169025,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 marketplace_purchase: title: Marketplace Purchase type: object @@ -168943,9 +169108,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *877 - previous_marketplace_purchase: *913 - repository: *878 + organization: *879 + previous_marketplace_purchase: *915 + repository: *880 sender: *4 required: - action @@ -169025,12 +169190,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *875 - installation: *876 - marketplace_purchase: *912 - organization: *877 - previous_marketplace_purchase: *913 - repository: *878 + enterprise: *877 + installation: *878 + marketplace_purchase: *914 + organization: *879 + previous_marketplace_purchase: *915 + repository: *880 sender: *4 required: - action @@ -169132,11 +169297,11 @@ x-webhooks: type: string required: - to - enterprise: *875 - installation: *876 - member: *904 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + member: *906 + organization: *879 + repository: *880 sender: *4 required: - action @@ -169236,11 +169401,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *875 - installation: *876 - member: *904 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + member: *906 + organization: *879 + repository: *880 sender: *4 required: - action @@ -169319,11 +169484,11 @@ x-webhooks: type: string enum: - removed - enterprise: *875 - installation: *876 - member: *904 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + member: *906 + organization: *879 + repository: *880 sender: *4 required: - action @@ -169401,11 +169566,11 @@ x-webhooks: type: string enum: - added - enterprise: *875 - installation: *876 - member: *904 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + member: *906 + organization: *879 + repository: *880 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169481,7 +169646,7 @@ x-webhooks: required: - login - id - team: &914 + team: &916 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -169704,11 +169869,11 @@ x-webhooks: type: string enum: - removed - enterprise: *875 - installation: *876 - member: *904 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + member: *906 + organization: *879 + repository: *880 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169785,7 +169950,7 @@ x-webhooks: required: - login - id - team: *914 + team: *916 required: - action - scope @@ -169867,8 +170032,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *876 - merge_group: &916 + installation: *878 + merge_group: &918 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169887,15 +170052,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *915 + head_commit: *917 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -169981,10 +170146,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *876 - merge_group: *916 - organization: *877 - repository: *878 + installation: *878 + merge_group: *918 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170057,7 +170222,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 + enterprise: *877 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -170166,16 +170331,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *876 - organization: *877 + installation: *878 + organization: *879 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: *917 - required: *918 + properties: *919 + required: *920 nullable: true sender: *4 required: @@ -170256,11 +170421,11 @@ x-webhooks: type: string enum: - closed - enterprise: *875 - installation: *876 - milestone: *909 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + milestone: *911 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170339,9 +170504,9 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - milestone: &919 + enterprise: *877 + installation: *878 + milestone: &921 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170478,8 +170643,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170558,11 +170723,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - milestone: *909 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + milestone: *911 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170672,11 +170837,11 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - milestone: *909 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + milestone: *911 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170756,11 +170921,11 @@ x-webhooks: type: string enum: - opened - enterprise: *875 - installation: *876 - milestone: *919 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + milestone: *921 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170839,11 +171004,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *904 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + blocked_user: *906 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -170922,11 +171087,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *904 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + blocked_user: *906 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -171001,8 +171166,8 @@ x-webhooks: type: string enum: - created - definition: *154 - enterprise: *875 + definition: *156 + enterprise: *877 sender: *4 required: - action @@ -171082,8 +171247,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 sender: *4 required: - action @@ -171155,9 +171320,9 @@ x-webhooks: type: string enum: - updated - definition: *154 - enterprise: *875 - installation: *876 + definition: *156 + enterprise: *877 + installation: *878 sender: *4 required: - action @@ -171229,18 +171394,18 @@ x-webhooks: type: string enum: - updated - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 new_property_values: type: array description: The new custom property values. - items: *158 + items: *160 old_property_values: type: array description: The old custom property values. - items: *158 + items: *160 required: - action - organization @@ -171319,9 +171484,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - membership: &920 + enterprise: *877 + installation: *878 + membership: &922 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -171428,8 +171593,8 @@ x-webhooks: - role - organization_url - user - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -171507,11 +171672,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *875 - installation: *876 - membership: *920 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + membership: *922 + organization: *879 + repository: *880 sender: *4 required: - action @@ -171590,8 +171755,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -171707,10 +171872,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 - user: *904 + user: *906 required: - action - invitation @@ -171788,11 +171953,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *875 - installation: *876 - membership: *920 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + membership: *922 + organization: *879 + repository: *880 sender: *4 required: - action @@ -171879,11 +172044,11 @@ x-webhooks: properties: from: type: string - enterprise: *875 - installation: *876 - membership: *920 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + membership: *922 + organization: *879 + repository: *880 sender: *4 required: - action @@ -171961,9 +172126,9 @@ x-webhooks: type: string enum: - published - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 package: description: Information about the package. type: object @@ -172462,7 +172627,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &921 + items: &923 title: Ruby Gems metadata type: object properties: @@ -172557,7 +172722,7 @@ x-webhooks: - owner - package_version - registry - repository: *878 + repository: *880 sender: *4 required: - action @@ -172634,9 +172799,9 @@ x-webhooks: type: string enum: - updated - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 package: description: Information about the package. type: object @@ -172989,7 +173154,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *921 + items: *923 source_url: type: string format: uri @@ -173059,7 +173224,7 @@ x-webhooks: - owner - package_version - registry - repository: *878 + repository: *880 sender: *4 required: - action @@ -173235,12 +173400,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *875 + enterprise: *877 id: type: integer - installation: *876 - organization: *877 - repository: *878 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - id @@ -173317,7 +173482,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &922 + personal_access_token_request: &924 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -173463,10 +173628,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *875 - organization: *877 + enterprise: *877 + organization: *879 sender: *4 - installation: *876 + installation: *878 required: - action - personal_access_token_request @@ -173543,11 +173708,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *922 - enterprise: *875 - organization: *877 + personal_access_token_request: *924 + enterprise: *877 + organization: *879 sender: *4 - installation: *876 + installation: *878 required: - action - personal_access_token_request @@ -173623,11 +173788,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *922 - enterprise: *875 - organization: *877 + personal_access_token_request: *924 + enterprise: *877 + organization: *879 sender: *4 - installation: *876 + installation: *878 required: - action - personal_access_token_request @@ -173702,11 +173867,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *922 - organization: *877 - enterprise: *875 + personal_access_token_request: *924 + organization: *879 + enterprise: *877 sender: *4 - installation: *876 + installation: *878 required: - action - personal_access_token_request @@ -173811,7 +173976,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *923 + last_response: *925 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -173843,8 +174008,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 zen: description: Random string of GitHub zen. @@ -174089,10 +174254,10 @@ x-webhooks: - from required: - note - enterprise: *875 - installation: *876 - organization: *877 - project_card: &924 + enterprise: *877 + installation: *878 + organization: *879 + project_card: &926 title: Project Card type: object properties: @@ -174211,7 +174376,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *878 + repository: *880 sender: *4 required: - action @@ -174292,11 +174457,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - project_card: *924 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project_card: *926 + repository: *880 sender: *4 required: - action @@ -174376,9 +174541,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 project_card: title: Project Card type: object @@ -174506,8 +174671,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: *917 - required: *918 + properties: *919 + required: *920 nullable: true sender: *4 required: @@ -174601,11 +174766,11 @@ x-webhooks: - from required: - note - enterprise: *875 - installation: *876 - organization: *877 - project_card: *924 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project_card: *926 + repository: *880 sender: *4 required: - action @@ -174699,9 +174864,9 @@ x-webhooks: - from required: - column_id - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 project_card: allOf: - title: Project Card @@ -174891,7 +175056,7 @@ x-webhooks: type: string required: - after_id - repository: *878 + repository: *880 sender: *4 required: - action @@ -174971,10 +175136,10 @@ x-webhooks: type: string enum: - closed - enterprise: *875 - installation: *876 - organization: *877 - project: &926 + enterprise: *877 + installation: *878 + organization: *879 + project: &928 title: Project type: object properties: @@ -175098,7 +175263,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *878 + repository: *880 sender: *4 required: - action @@ -175178,10 +175343,10 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - project_column: &925 + enterprise: *877 + installation: *878 + organization: *879 + project_column: &927 title: Project Column type: object properties: @@ -175220,7 +175385,7 @@ x-webhooks: - name - created_at - updated_at - repository: *878 + repository: *880 sender: *4 required: - action @@ -175299,18 +175464,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - project_column: *925 + enterprise: *877 + installation: *878 + organization: *879 + project_column: *927 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: *917 - required: *918 + properties: *919 + required: *920 nullable: true sender: *4 required: @@ -175400,11 +175565,11 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - organization: *877 - project_column: *925 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project_column: *927 + repository: *880 sender: *4 required: - action @@ -175484,11 +175649,11 @@ x-webhooks: type: string enum: - moved - enterprise: *875 - installation: *876 - organization: *877 - project_column: *925 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project_column: *927 + repository: *880 sender: *4 required: - action @@ -175568,11 +175733,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - project: *926 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project: *928 + repository: *880 sender: *4 required: - action @@ -175652,18 +175817,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - project: *926 + enterprise: *877 + installation: *878 + organization: *879 + project: *928 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: *917 - required: *918 + properties: *919 + required: *920 nullable: true sender: *4 required: @@ -175765,11 +175930,11 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - organization: *877 - project: *926 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project: *928 + repository: *880 sender: *4 required: - action @@ -175848,11 +176013,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *875 - installation: *876 - organization: *877 - project: *926 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + project: *928 + repository: *880 sender: *4 required: - action @@ -175933,9 +176098,9 @@ x-webhooks: type: string enum: - closed - installation: *876 - organization: *877 - projects_v2: *420 + installation: *878 + organization: *879 + projects_v2: *422 sender: *4 required: - action @@ -176016,9 +176181,9 @@ x-webhooks: type: string enum: - created - installation: *876 - organization: *877 - projects_v2: *420 + installation: *878 + organization: *879 + projects_v2: *422 sender: *4 required: - action @@ -176099,9 +176264,9 @@ x-webhooks: type: string enum: - deleted - installation: *876 - organization: *877 - projects_v2: *420 + installation: *878 + organization: *879 + projects_v2: *422 sender: *4 required: - action @@ -176218,9 +176383,9 @@ x-webhooks: type: string to: type: string - installation: *876 - organization: *877 - projects_v2: *420 + installation: *878 + organization: *879 + projects_v2: *422 sender: *4 required: - action @@ -176303,7 +176468,7 @@ x-webhooks: type: string enum: - archived - changes: &930 + changes: &932 type: object properties: archived_at: @@ -176317,9 +176482,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *876 - organization: *877 - projects_v2_item: &927 + installation: *878 + organization: *879 + projects_v2_item: &929 title: Projects v2 Item description: An item belonging to a project type: object @@ -176337,7 +176502,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *427 + content_type: *429 creator: *4 created_at: type: string @@ -176454,9 +176619,9 @@ x-webhooks: nullable: true to: type: string - installation: *876 - organization: *877 - projects_v2_item: *927 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -176538,9 +176703,9 @@ x-webhooks: type: string enum: - created - installation: *876 - organization: *877 - projects_v2_item: *927 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -176621,9 +176786,9 @@ x-webhooks: type: string enum: - deleted - installation: *876 - organization: *877 - projects_v2_item: *927 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -176729,7 +176894,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &928 + - &930 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -176751,7 +176916,7 @@ x-webhooks: required: - id - name - - &929 + - &931 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -176785,8 +176950,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *928 - - *929 + - *930 + - *931 required: - field_value - type: object @@ -176802,9 +176967,9 @@ x-webhooks: nullable: true required: - body - installation: *876 - organization: *877 - projects_v2_item: *927 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -176899,9 +177064,9 @@ x-webhooks: to: type: string nullable: true - installation: *876 - organization: *877 - projects_v2_item: *927 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -176984,10 +177149,10 @@ x-webhooks: type: string enum: - restored - changes: *930 - installation: *876 - organization: *877 - projects_v2_item: *927 + changes: *932 + installation: *878 + organization: *879 + projects_v2_item: *929 sender: *4 required: - action @@ -177069,9 +177234,9 @@ x-webhooks: type: string enum: - reopened - installation: *876 - organization: *877 - projects_v2: *420 + installation: *878 + organization: *879 + projects_v2: *422 sender: *4 required: - action @@ -177152,14 +177317,14 @@ x-webhooks: type: string enum: - created - installation: *876 - organization: *877 - projects_v2_status_update: &933 + installation: *878 + organization: *879 + projects_v2_status_update: &935 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *931 - required: *932 + properties: *933 + required: *934 sender: *4 required: - action @@ -177240,9 +177405,9 @@ x-webhooks: type: string enum: - deleted - installation: *876 - organization: *877 - projects_v2_status_update: *933 + installation: *878 + organization: *879 + projects_v2_status_update: *935 sender: *4 required: - action @@ -177378,9 +177543,9 @@ x-webhooks: type: string format: date nullable: true - installation: *876 - organization: *877 - projects_v2_status_update: *933 + installation: *878 + organization: *879 + projects_v2_status_update: *935 sender: *4 required: - action @@ -177451,10 +177616,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - repository @@ -177531,13 +177696,13 @@ x-webhooks: type: string enum: - assigned - assignee: *904 - enterprise: *875 - installation: *876 - number: &934 + assignee: *906 + enterprise: *877 + installation: *878 + number: &936 description: The pull request number. type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -179842,7 +180007,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -179924,11 +180089,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -182228,7 +182393,7 @@ x-webhooks: - draft reason: type: string - repository: *878 + repository: *880 sender: *4 required: - action @@ -182310,11 +182475,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -184614,7 +184779,7 @@ x-webhooks: - draft reason: type: string - repository: *878 + repository: *880 sender: *4 required: - action @@ -184696,13 +184861,13 @@ x-webhooks: type: string enum: - closed - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: &935 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: &937 allOf: - - *724 + - *726 - type: object properties: allow_auto_merge: @@ -184764,7 +184929,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *878 + repository: *880 sender: *4 required: - action @@ -184845,12 +185010,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: *935 - repository: *878 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: *937 + repository: *880 sender: *4 required: - action @@ -184930,11 +185095,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *875 - milestone: *706 - number: *934 - organization: *877 - pull_request: &936 + enterprise: *877 + milestone: *708 + number: *936 + organization: *879 + pull_request: &938 title: Pull Request type: object properties: @@ -187219,7 +187384,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -187298,11 +187463,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -189606,7 +189771,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *878 + repository: *880 sender: *4 required: - action @@ -189730,12 +189895,12 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: *935 - repository: *878 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: *937 + repository: *880 sender: *4 required: - action @@ -189815,11 +189980,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -192108,7 +192273,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -192188,11 +192353,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *875 - installation: *876 - label: *898 - number: *934 - organization: *877 + enterprise: *877 + installation: *878 + label: *900 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -194496,7 +194661,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -194577,10 +194742,10 @@ x-webhooks: type: string enum: - locked - enterprise: *875 - installation: *876 - number: *934 - organization: *877 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -196882,7 +197047,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -196962,12 +197127,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *875 - milestone: *706 - number: *934 - organization: *877 - pull_request: *936 - repository: *878 + enterprise: *877 + milestone: *708 + number: *936 + organization: *879 + pull_request: *938 + repository: *880 sender: *4 required: - action @@ -197046,12 +197211,12 @@ x-webhooks: type: string enum: - opened - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: *935 - repository: *878 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: *937 + repository: *880 sender: *4 required: - action @@ -197132,12 +197297,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: *935 - repository: *878 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: *937 + repository: *880 sender: *4 required: - action @@ -197217,12 +197382,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *875 - installation: *876 - number: *934 - organization: *877 - pull_request: *935 - repository: *878 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 + pull_request: *937 + repository: *880 sender: *4 required: - action @@ -197588,9 +197753,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: type: object properties: @@ -199782,7 +199947,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *878 + repository: *880 sender: *4 required: - action @@ -199862,7 +200027,7 @@ x-webhooks: type: string enum: - deleted - comment: &938 + comment: &940 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -200147,9 +200312,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: type: object properties: @@ -202329,7 +202494,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *878 + repository: *880 sender: *4 required: - action @@ -202409,11 +202574,11 @@ x-webhooks: type: string enum: - edited - changes: *937 - comment: *938 - enterprise: *875 - installation: *876 - organization: *877 + changes: *939 + comment: *940 + enterprise: *877 + installation: *878 + organization: *879 pull_request: type: object properties: @@ -204596,7 +204761,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *878 + repository: *880 sender: *4 required: - action @@ -204677,9 +204842,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: title: Simple Pull Request type: object @@ -206874,7 +207039,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *878 + repository: *880 review: description: The review that was affected. type: object @@ -207121,9 +207286,9 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: title: Simple Pull Request type: object @@ -209177,8 +209342,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *878 - review: &939 + repository: *880 + review: &941 description: The review that was affected. type: object properties: @@ -209411,12 +209576,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: description: The pull request number. type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -211721,7 +211886,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 requested_reviewer: title: User type: object @@ -211805,12 +211970,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: description: The pull request number. type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -214122,7 +214287,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214314,12 +214479,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: description: The pull request number. type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -216626,7 +216791,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 requested_reviewer: title: User type: object @@ -216711,12 +216876,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *875 - installation: *876 + enterprise: *877 + installation: *878 number: description: The pull request number. type: integer - organization: *877 + organization: *879 pull_request: title: Pull Request type: object @@ -219014,7 +219179,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 requested_team: title: Team description: Groups of organization members that gives permissions @@ -219195,9 +219360,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: title: Simple Pull Request type: object @@ -221394,8 +221559,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *878 - review: *939 + repository: *880 + review: *941 sender: *4 required: - action @@ -221475,9 +221640,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: title: Simple Pull Request type: object @@ -223569,7 +223734,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *878 + repository: *880 sender: *4 thread: type: object @@ -223956,9 +224121,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 pull_request: title: Simple Pull Request type: object @@ -226036,7 +226201,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *878 + repository: *880 sender: *4 thread: type: object @@ -226426,10 +226591,10 @@ x-webhooks: type: string before: type: string - enterprise: *875 - installation: *876 - number: *934 - organization: *877 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -228722,7 +228887,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -228804,11 +228969,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *940 - enterprise: *875 - installation: *876 - number: *934 - organization: *877 + assignee: *942 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -231113,7 +231278,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -231192,11 +231357,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *875 - installation: *876 - label: *898 - number: *934 - organization: *877 + enterprise: *877 + installation: *878 + label: *900 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -233491,7 +233656,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -233572,10 +233737,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *875 - installation: *876 - number: *934 - organization: *877 + enterprise: *877 + installation: *878 + number: *936 + organization: *879 pull_request: title: Pull Request type: object @@ -235862,7 +236027,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *878 + repository: *880 sender: *4 required: - action @@ -236062,7 +236227,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *875 + enterprise: *877 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -236154,8 +236319,8 @@ x-webhooks: - url - author - committer - installation: *876 - organization: *877 + installation: *878 + organization: *879 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -236741,9 +236906,9 @@ x-webhooks: type: string enum: - published - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 registry_package: type: object properties: @@ -237189,7 +237354,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *921 + items: *923 summary: type: string tag_name: @@ -237243,7 +237408,7 @@ x-webhooks: - owner - package_version - registry - repository: *878 + repository: *880 sender: *4 required: - action @@ -237321,9 +237486,9 @@ x-webhooks: type: string enum: - updated - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 registry_package: type: object properties: @@ -237631,7 +237796,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *921 + items: *923 summary: type: string tag_name: @@ -237680,7 +237845,7 @@ x-webhooks: - owner - package_version - registry - repository: *878 + repository: *880 sender: *4 required: - action @@ -237757,10 +237922,10 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - release: &941 + enterprise: *877 + installation: *878 + organization: *879 + release: &943 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -238078,7 +238243,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *878 + repository: *880 sender: *4 required: - action @@ -238155,11 +238320,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - release: *941 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + release: *943 + repository: *880 sender: *4 required: - action @@ -238276,11 +238441,11 @@ x-webhooks: type: boolean required: - to - enterprise: *875 - installation: *876 - organization: *877 - release: *941 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + release: *943 + repository: *880 sender: *4 required: - action @@ -238358,9 +238523,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -238682,7 +238847,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *878 + repository: *880 sender: *4 required: - action @@ -238758,10 +238923,10 @@ x-webhooks: type: string enum: - published - enterprise: *875 - installation: *876 - organization: *877 - release: &942 + enterprise: *877 + installation: *878 + organization: *879 + release: &944 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -239080,7 +239245,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *878 + repository: *880 sender: *4 required: - action @@ -239156,11 +239321,11 @@ x-webhooks: type: string enum: - released - enterprise: *875 - installation: *876 - organization: *877 - release: *941 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + release: *943 + repository: *880 sender: *4 required: - action @@ -239236,11 +239401,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *875 - installation: *876 - organization: *877 - release: *942 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + release: *944 + repository: *880 sender: *4 required: - action @@ -239316,11 +239481,11 @@ x-webhooks: type: string enum: - published - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - repository_advisory: *776 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + repository_advisory: *778 sender: *4 required: - action @@ -239396,11 +239561,11 @@ x-webhooks: type: string enum: - reported - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - repository_advisory: *776 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + repository_advisory: *778 sender: *4 required: - action @@ -239476,10 +239641,10 @@ x-webhooks: type: string enum: - archived - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -239556,10 +239721,10 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -239637,10 +239802,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -239724,10 +239889,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -239839,10 +240004,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -239914,10 +240079,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 status: type: string @@ -239998,10 +240163,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -240078,10 +240243,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -240175,10 +240340,10 @@ x-webhooks: - name required: - repository - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -240258,11 +240423,11 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - repository_ruleset: *193 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + repository_ruleset: *195 sender: *4 required: - action @@ -240340,11 +240505,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - repository_ruleset: *193 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + repository_ruleset: *195 sender: *4 required: - action @@ -240422,11 +240587,11 @@ x-webhooks: type: string enum: - edited - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - repository_ruleset: *193 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + repository_ruleset: *195 changes: type: object properties: @@ -240445,16 +240610,16 @@ x-webhooks: properties: added: type: array - items: *164 + items: *166 deleted: type: array - items: *164 + items: *166 updated: type: array items: type: object properties: - condition: *164 + condition: *166 changes: type: object properties: @@ -240487,16 +240652,16 @@ x-webhooks: properties: added: type: array - items: *744 + items: *746 deleted: type: array - items: *744 + items: *746 updated: type: array items: type: object properties: - rule: *744 + rule: *746 changes: type: object properties: @@ -240730,10 +240895,10 @@ x-webhooks: - from required: - owner - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -240811,10 +240976,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -240892,7 +241057,7 @@ x-webhooks: type: string enum: - create - alert: &943 + alert: &945 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -241014,10 +241179,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241223,10 +241388,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241304,11 +241469,11 @@ x-webhooks: type: string enum: - reopen - alert: *943 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *945 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241507,10 +241672,10 @@ x-webhooks: enum: - fixed - open - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241588,7 +241753,7 @@ x-webhooks: type: string enum: - assigned - alert: &944 + alert: &946 type: object properties: number: *131 @@ -241731,10 +241896,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241812,11 +241977,11 @@ x-webhooks: type: string enum: - created - alert: *944 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -241897,11 +242062,11 @@ x-webhooks: type: string enum: - created - alert: *944 - installation: *876 - location: *945 - organization: *877 - repository: *878 + alert: *946 + installation: *878 + location: *947 + organization: *879 + repository: *880 sender: *4 required: - location @@ -242139,11 +242304,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *944 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -242221,11 +242386,11 @@ x-webhooks: type: string enum: - reopened - alert: *944 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -242303,11 +242468,11 @@ x-webhooks: type: string enum: - resolved - alert: *944 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -242385,12 +242550,12 @@ x-webhooks: type: string enum: - unassigned - alert: *944 + alert: *946 assignee: *4 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -242468,11 +242633,11 @@ x-webhooks: type: string enum: - validated - alert: *944 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + alert: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -242598,10 +242763,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *878 - enterprise: *875 - installation: *876 - organization: *877 + repository: *880 + enterprise: *877 + installation: *878 + organization: *879 sender: *4 required: - action @@ -242679,11 +242844,11 @@ x-webhooks: type: string enum: - published - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - security_advisory: &946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + security_advisory: &948 description: The details of the security advisory, including summary, description, and severity. type: object @@ -242866,11 +243031,11 @@ x-webhooks: type: string enum: - updated - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 - security_advisory: *946 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 + security_advisory: *948 sender: *4 required: - action @@ -242943,10 +243108,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -243130,11 +243295,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *437 - enterprise: *875 - installation: *876 - organization: *877 - repository: *483 + security_and_analysis: *439 + enterprise: *877 + installation: *878 + organization: *879 + repository: *485 sender: *4 required: - changes @@ -243212,12 +243377,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: &947 + sponsorship: &949 type: object properties: created_at: @@ -243518,12 +243683,12 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: *947 + sponsorship: *949 required: - action - sponsorship @@ -243611,12 +243776,12 @@ x-webhooks: type: string required: - from - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: *947 + sponsorship: *949 required: - action - changes @@ -243693,17 +243858,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &948 + effective_date: &950 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: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: *947 + sponsorship: *949 required: - action - sponsorship @@ -243777,7 +243942,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &949 + changes: &951 type: object properties: tier: @@ -243821,13 +243986,13 @@ x-webhooks: - from required: - tier - effective_date: *948 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + effective_date: *950 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: *947 + sponsorship: *949 required: - action - changes @@ -243904,13 +244069,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *949 - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + changes: *951 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - sponsorship: *947 + sponsorship: *949 required: - action - changes @@ -243984,10 +244149,10 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -244070,10 +244235,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -244493,15 +244658,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *875 + enterprise: *877 id: description: The unique identifier of the status. type: integer - installation: *876 + installation: *878 name: type: string - organization: *877 - repository: *878 + organization: *879 + repository: *880 sender: *4 sha: description: The Commit SHA. @@ -244610,15 +244775,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *227 + parent_issue: *229 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *227 - installation: *876 - organization: *877 - repository: *878 + sub_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -244702,15 +244867,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *227 + parent_issue: *229 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *227 - installation: *876 - organization: *877 - repository: *878 + sub_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -244794,15 +244959,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *227 + sub_issue: *229 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *227 - installation: *876 - organization: *877 - repository: *878 + parent_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -244886,15 +245051,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *227 + sub_issue: *229 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *227 - installation: *876 - organization: *877 - repository: *878 + parent_issue: *229 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -244971,12 +245136,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 - team: &950 + team: &952 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -245199,9 +245364,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 repository: title: Repository description: A git repository @@ -245659,7 +245824,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *950 + team: *952 required: - action - team @@ -245735,9 +245900,9 @@ x-webhooks: type: string enum: - created - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 repository: title: Repository description: A git repository @@ -246195,7 +246360,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *950 + team: *952 required: - action - team @@ -246272,9 +246437,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 repository: title: Repository description: A git repository @@ -246732,7 +246897,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *950 + team: *952 required: - action - team @@ -246876,9 +247041,9 @@ x-webhooks: - from required: - permissions - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 repository: title: Repository description: A git repository @@ -247336,7 +247501,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *950 + team: *952 required: - action - changes @@ -247414,9 +247579,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *875 - installation: *876 - organization: *877 + enterprise: *877 + installation: *878 + organization: *879 repository: title: Repository description: A git repository @@ -247874,7 +248039,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *950 + team: *952 required: - action - team @@ -247950,10 +248115,10 @@ x-webhooks: type: string enum: - started - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 required: - action @@ -248026,16 +248191,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *875 + enterprise: *877 inputs: type: object nullable: true additionalProperties: true - installation: *876 - organization: *877 + installation: *878 + organization: *879 ref: type: string - repository: *878 + repository: *880 sender: *4 workflow: type: string @@ -248117,10 +248282,10 @@ x-webhooks: type: string enum: - completed - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 workflow_job: allOf: @@ -248357,7 +248522,7 @@ x-webhooks: type: string required: - conclusion - deployment: *625 + deployment: *627 required: - action - repository @@ -248436,10 +248601,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 workflow_job: allOf: @@ -248699,7 +248864,7 @@ x-webhooks: required: - status - steps - deployment: *625 + deployment: *627 required: - action - repository @@ -248778,10 +248943,10 @@ x-webhooks: type: string enum: - queued - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 workflow_job: type: object @@ -248916,7 +249081,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *625 + deployment: *627 required: - action - repository @@ -248995,10 +249160,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *875 - installation: *876 - organization: *877 - repository: *878 + enterprise: *877 + installation: *878 + organization: *879 + repository: *880 sender: *4 workflow_job: type: object @@ -249134,7 +249299,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *625 + deployment: *627 required: - action - repository {"code":"deadline_exceeded","msg":"operation timed out"}