Skip to content

Commit a0bdf67

Browse files
committed
sig,report: Include release branch failures in report
With the release branch failures omitted from the report - the numbers displayed in the ci-health README do not match the number of failures in the report which can be confusing. Include release branch job failures in the sig reports Signed-off-by: Brian Carey <bcarey@redhat.com>
1 parent 48dda59 commit a0bdf67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/htmlreport/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ type SigFailure struct {
4646
}
4747

4848
var jobRegexAliases = map[string]string{
49-
"compute": "sig-compute$|sig-compute-serial$|sig-compute-migrations$|sig-operator$|vgpu$|sev$",
50-
"network": "sig-network$|sriov$",
51-
"storage": "sig-storage$",
49+
"compute": "sig-compute|sig-compute-serial|sig-compute-migrations|sig-operator|vgpu|sev",
50+
"network": "sig-network|sriov",
51+
"storage": "sig-storage",
5252
}
5353

5454
func fetchResults(resultsPath string) (*HTMLReportResults, error) {

0 commit comments

Comments
 (0)