From 3ea87d48987108b1b82cbb801b7fe268a398a394 Mon Sep 17 00:00:00 2001 From: Ashish Kurmi Date: Tue, 11 Apr 2023 11:19:11 -0700 Subject: [PATCH] changing ci test non-compliant revision trace to Debug from Warn Signed-off-by: Ashish Kurmi --- checks/evaluation/ci_tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/evaluation/ci_tests.go b/checks/evaluation/ci_tests.go index af95be2fe6e..b6686203457 100644 --- a/checks/evaluation/ci_tests.go +++ b/checks/evaluation/ci_tests.go @@ -61,7 +61,7 @@ func CITests(name string, c *checker.CITestData, dl checker.DetailLogger) checke if !foundCI { // Log message says commit, but really we only care about PRs, and // use only one commit (branch HEAD) to refer to all commits in a PR - dl.Warn(&checker.LogMessage{ + dl.Debug(&checker.LogMessage{ Text: fmt.Sprintf("merged PR %d without CI test at HEAD: %s", r.PullRequestNumber, r.HeadSHA), }) }