From 520061721cf41f030559d8c768cd3382436999df Mon Sep 17 00:00:00 2001 From: Godofredo Contreras Date: Thu, 27 Jan 2022 11:57:19 -0800 Subject: [PATCH] Add Dart and Flutter CI systems to CI tests check. The current check is looking at the github checks data to identify whether a given PR ran tests. Flutter and Dart repos are failing the check becuase their systems are not recognized as CI Systems. Bug: https://github.com/ossf/scorecard/issues/1547 --- checks/ci_tests.go | 1 + 1 file changed, 1 insertion(+) diff --git a/checks/ci_tests.go b/checks/ci_tests.go index c3de3da8232..1b46126880a 100644 --- a/checks/ci_tests.go +++ b/checks/ci_tests.go @@ -151,6 +151,7 @@ func isTest(s string) bool { for _, pattern := range []string{ "appveyor", "buildkite", "circleci", "e2e", "github-actions", "jenkins", "mergeable", "packit-as-a-service", "semaphoreci", "test", "travis-ci", + "flutter-dashboard", "Cirrus CI", } { if strings.Contains(l, pattern) { return true