From 66aa17264983fc9bf3b2c127bd8a058e5d743a70 Mon Sep 17 00:00:00 2001 From: Devan Goodwin Date: Wed, 3 Dec 2025 08:28:15 -0400 Subject: [PATCH] Stop updating triaged Jiras when all regressions resolve This is leading to increased debate rather than focus on fixes, as things can and do come and go on the board. --- pkg/api/componentreadiness/regressiontracker.go | 1 - pkg/api/componentreadiness/triage.go | 7 ------- 2 files changed, 8 deletions(-) diff --git a/pkg/api/componentreadiness/regressiontracker.go b/pkg/api/componentreadiness/regressiontracker.go index bcfda18ea..00e85d830 100644 --- a/pkg/api/componentreadiness/regressiontracker.go +++ b/pkg/api/componentreadiness/regressiontracker.go @@ -156,7 +156,6 @@ func (prs *PostgresRegressionStore) ResolveTriages() error { continue } - ReportTriageResolved(prs.jiraClient, triage) log.Infof("Resolved triage %d with resolution time %v", triage.ID, triage.Resolved.Time) } diff --git a/pkg/api/componentreadiness/triage.go b/pkg/api/componentreadiness/triage.go index 2156e01a1..11c62c6ce 100644 --- a/pkg/api/componentreadiness/triage.go +++ b/pkg/api/componentreadiness/triage.go @@ -110,13 +110,6 @@ func CreateTriage(dbc *gorm.DB, jiraClient *jira.Client, triage models.Triage, r const jiraPrefix = "https://issues.redhat.com/browse/" -// ReportTriageResolved comments on the associated jira that the regressions have been resolved, including a link -// to the triage details -func ReportTriageResolved(jiraClient *jira.Client, triage models.Triage) { - message := "All regressions associated with this triage record have been resolved." - reportOnJiraUsedForTriage(jiraClient, triage, message, nil) -} - // ReportTriageAddedForJira comments on the associated jira with a link to the triage details func ReportTriageAddedForJira(jiraClient *jira.Client, triage models.Triage, req *http.Request) { message := "This bug has been triaged to one or more component readiness regressions."