diff --git a/pkg/healthcheck/forbidden.go b/pkg/healthcheck/forbidden.go index 2c58ab9..7cd97c1 100644 --- a/pkg/healthcheck/forbidden.go +++ b/pkg/healthcheck/forbidden.go @@ -45,7 +45,7 @@ func getForbiddens(root string, fileList []string, localList string) ([]string, } if info.IsDir() { - if info.Name() == ".git" || info.Name() == ".gitea" || info.Name() == "ci" || (localList != "" && inString(info.Name(), dirs)) { + if info.Name() == ".git" || (localList != "" && inString(info.Name(), dirs)) { return filepath.SkipDir } } else {