Skip to content

Commit

Permalink
🐛 Fix typo (#3267)
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Kliuchnikov <[email protected]>
  • Loading branch information
eustas authored Jul 14, 2023
1 parent fc87616 commit e1eede2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/sast.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func SAST(c *checker.CheckRequest) checker.CheckResult {
Text: getNonCompliantPRMessage(nonCompliantPRs),
})
score := checker.AggregateScoresWithWeight(map[int]int{sastScore: sastWeight, codeQlScore: codeQlWeight})
return checker.CreateResultWithScore(CheckSAST, "SAST tool detected but not run on all commmits", score)
return checker.CreateResultWithScore(CheckSAST, "SAST tool detected but not run on all commits", score)
default:
return checker.CreateRuntimeErrorResult(CheckSAST, sce.WithMessage(sce.ErrScorecardInternal, "contact team"))
}
Expand Down

0 comments on commit e1eede2

Please sign in to comment.