From 9fc8686c20fdb39020ef404017292e8a9d155891 Mon Sep 17 00:00:00 2001 From: Eugene Kliuchnikov Date: Fri, 14 Jul 2023 16:32:57 +0200 Subject: [PATCH] Fix typo Signed-off-by: Eugene Kliuchnikov --- checks/sast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/sast.go b/checks/sast.go index 423767f842e..2aab45c9039 100644 --- a/checks/sast.go +++ b/checks/sast.go @@ -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")) }