Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Code Scanning APIs #310

Open
GeekMasher opened this issue Aug 9, 2022 · 0 comments
Open

Support Code Scanning APIs #310

GeekMasher opened this issue Aug 9, 2022 · 0 comments

Comments

@GeekMasher
Copy link

💡 Feature description

Supporting the GitHub Code Scanning API would allow us to automatically pull security alerts from GitHub and perform actions on those results.

https://docs.github.com/en/enterprise-cloud@latest/rest/code-scanning#list-code-scanning-alerts-for-a-repository

💻 Basic example

let owner = "softprops";
let repo = "hubcaps";

let alerts: Vec<CodeScanningAlerts> = github.repo(owner, repo).code_scanning().alerts().await?;

for alert in alerts {
    println!(" >> Alert('{:#?}')", alert.rule.name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant