-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add new "List CodeQL databases for a repository" (`GET /repos/{…
…owner}/{repo}/code-scanning/codeql/databases`) and "Get a CodeQL database for a repository" (`GET /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}`) APIs, plus description tweaks (#294) WIP: schema updates Co-authored-by: Octokit Bot <[email protected]>
- Loading branch information
1 parent
cb05d6e
commit 7456c02
Showing
39 changed files
with
4,869 additions
and
343 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168556,7 +168556,7 @@ | |
} | ||
}, | ||
"403": { | ||
"description": "Response if the repository is archived or if github advanced security is not enabled for this repository", | ||
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -169741,7 +169741,7 @@ | |
} | ||
}, | ||
"403": { | ||
"description": "Response if the repository is archived or if github advanced security is not enabled for this repository", | ||
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -169946,7 +169946,7 @@ | |
"description": "Bad Request if the sarif field is invalid" | ||
}, | ||
"403": { | ||
"description": "Response if the repository is archived or if github advanced security is not enabled for this repository", | ||
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
|
@@ -191464,7 +191464,7 @@ | |
}, | ||
"put": { | ||
"summary": "Create or update file contents", | ||
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.", | ||
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.\n\n**Note:** If you use this endpoint and the \"[Delete a file](https://docs.github.com/[email protected]/rest/reference/repos/#delete-file)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.", | ||
"tags": [ | ||
"repos" | ||
], | ||
|
@@ -192168,7 +192168,7 @@ | |
}, | ||
"delete": { | ||
"summary": "Delete a file", | ||
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.", | ||
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.\n\n**Note:** If you use this endpoint and the \"[Create or update file contents](https://docs.github.com/[email protected]/rest/reference/repos/#create-or-update-file-contents)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.", | ||
"tags": [ | ||
"repos" | ||
], | ||
|
Oops, something went wrong.