feat: added MarshalYAML to severities array + issue tracker options fix (#5166)

* feat: added MarshalYAML to severities array

* fix issue with creation of reports
This commit is contained in:
Ice3man
2024-05-10 21:59:03 +05:30
committed by GitHub
parent fed10a11e8
commit 6067b78bcf
7 changed files with 22 additions and 4 deletions

View File

@@ -176,7 +176,7 @@ func (i *Integration) Name() string {
// ShouldFilter determines if an issue should be logged to this tracker
func (i *Integration) ShouldFilter(event *output.ResultEvent) bool {
if i.options.AllowList != nil && i.options.AllowList.GetMatch(event) {
return true
return false
}
if i.options.DenyList != nil && i.options.DenyList.GetMatch(event) {