-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a default gatecheck configuration and added merge capabilities
Previously if an explicit gatecheck configuration was not provided the default behavior was essentially to validate nothing. Now there is a reasonable default that can be overriden by user specified config.
- Loading branch information
Showing
5 changed files
with
106 additions
and
10 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: "1" | ||
grype: | ||
# Block deployments with High or Critical vulnerabilities | ||
severityLimit: | ||
critical: | ||
enabled: true | ||
limit: 0 | ||
high: | ||
enabled: true | ||
limit: 0 | ||
# Ignore vulnerabilities with very low Exploit Probability Scores | ||
epssRiskAcceptance: | ||
enabled: true | ||
score: 0.001 | ||
semgrep: | ||
severityLimit: | ||
error: | ||
enabled: true | ||
limit: 0 | ||
# Ignore low impact errors | ||
impactRiskAcceptance: | ||
enabled: true | ||
low: true | ||
gitleaks: | ||
limitEnabled: true |
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