From 711b937a2b13649a4a3175476c226b3740d182b6 Mon Sep 17 00:00:00 2001
From: George Gastaldi
Date: Thu, 24 Nov 2022 08:47:47 -0300
Subject: [PATCH 1/3] Improve text according to feedback
---
quarkus.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/quarkus.json b/quarkus.json
index d5675e2..64f67ee 100644
--- a/quarkus.json
+++ b/quarkus.json
@@ -38,7 +38,7 @@
{
"OpenOrVersionedNotDoneIssue": {
"jql": "project = QUARKUS AND (resolution != 'Done') AND (status not in (Closed) or fixVersion is not EMPTY)",
- "description": "Duplicate issues should be in the 'Closed' status and not be assigned to a FixVersion. This ensures that they don't clutter up reports. Please fix this be ensuring the issue is in the 'Closed' status and that the 'Fix Version/s' field is empty"
+ "description": "Open Issues with a resolution different than 'Done' should be in the 'Closed' status and not be assigned to a FixVersion. This ensures that they don't clutter up reports. Please fix this be ensuring the issue is in the 'Closed' status and that the 'Fix Version/s' field is empty"
}
},
{
From 5e0cc7fe6a99a20b151395b421f4ae2d4c0fdad5 Mon Sep 17 00:00:00 2001
From: George Gastaldi
Date: Thu, 24 Nov 2022 08:48:49 -0300
Subject: [PATCH 2/3] Improve .gitignore
---
.gitignore | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.gitignore b/.gitignore
index 1208334..456e330 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,7 @@ hs_err_pid*
# JIRA Lint specific files
*-test.xml
emails.html
+
+# IDE files
+*.iml
+.idea
From 1c2831bb972533e7401f833ece254066e3a4404c Mon Sep 17 00:00:00 2001
From: George Gastaldi
Date: Thu, 24 Nov 2022 08:51:33 -0300
Subject: [PATCH 3/3] Remove Paul from notification email
---
run.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/run.java b/run.java
index d7dbbb3..9ffc9bb 100755
--- a/run.java
+++ b/run.java
@@ -212,7 +212,7 @@ else if (getFirstComponentLead(issue) != null) { // Try component lead next
}
else //Fallback to JIRA Lint process maintainer
{
- jiraUser = new JiraUser("Paul Robinson", "probinso@redhat.com");
+ jiraUser = new JiraUser("RHBQ Release Coordinator", EMAIL_FROM);
}
ReportResult reportResult = new ReportResult(reportItemID, issue.getSummary(), reportItem.getDescription(), new URL("https://issues.redhat.com/browse/" + issue.getKey()), issue.getKey(), jiraUser);
@@ -308,7 +308,7 @@ public String createEmailBody(JiraUser jiraUser, List reportResult
body += "
";
body += "If you are confused, or think this email has been sent in error, hit reply to let me know.
";
body += "Thanks,
";
- body += "Paul (via the JIRA Lint tool)
";
+ body += "RHBQ Release Coordinator (via the JIRA Lint tool)
";
return body;
}