Skip to content

Commit

Permalink
github doc updated (#110)
Browse files Browse the repository at this point in the history
* github doc updated

* Update integrations.rst

* Update integrations.rst

* Update integrations.rst

Co-authored-by: valentijnscholten <valentijnscholten@gmail.com>
  • Loading branch information
tahir59 and valentijnscholten committed Nov 15, 2020
1 parent 5b601d3 commit 229b564
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions docs/integrations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,41 @@ Github Vulnerability
--------------------
Import findings from Github vulnerability scan: https://help.github.com/en/github/managing-security-vulnerabilities

Github v4 graphql query to fetch data:

`` query getVulnerabilitiesByOwner($owner: String!) {
search(query: $owner, type: REPOSITORY, first: 100) {
nodes {
... on Repository {
name<br/>
vulnerabilityAlerts(last: 100) {
nodes {
id<br/>
securityVulnerability {
severity<br/>
package {
name
}
advisory {
description<br/>
summary<br/>
identifiers {
type<br/>
value
}
references {
url
}
}
}
}
}
}
}
}
}
``

HuskyCI Report
--------------
Import JSON reports from [HuskyCI](https://github.com/globocom/huskyCI)
Expand Down

0 comments on commit 229b564

Please sign in to comment.