Skip to content

Commit

Permalink
Add Dart and Flutter CI systems to CI tests check.
Browse files Browse the repository at this point in the history
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: ossf#1547
  • Loading branch information
godofredoc committed Jan 27, 2022
1 parent 17467c1 commit 5200617
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions checks/ci_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5200617

Please sign in to comment.