Skip to content

Commit

Permalink
feat(release-automation): add new checks to quality dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszbarwicki committed Mar 5, 2024
1 parent 2f4eed2 commit ecf7b85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions release-automation/internal/dashboard/tractusx.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,13 @@ func initializeChecksForDirectory(dir string) []tractusx.QualityGuideline {
checks = append(checks, docs.NewReadmeExists(dir))
checks = append(checks, docs.NewInstallExists(dir))
checks = append(checks, docs.NewChangelogExists(dir))
checks = append(checks, repo.NewDefaultBranch(dir))
checks = append(checks, repo.NewRepoStructureExists(dir))
checks = append(checks, repo.NewLeadingRepositoryDefined(dir))
checks = append(checks, container.NewAllowedBaseImage(dir))
checks = append(checks, container.NewNonRootContainer(dir))
checks = append(checks, helm.NewHelmStructureExists(dir))
checks = append(checks, helm.NewResourceMgmt(dir))
checks = append(checks, helm.NewHelmWorkflowCheck(dir))
return checks
}
Expand Down

0 comments on commit ecf7b85

Please sign in to comment.