-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from gastaldi/improvements
Improve text according to feedback
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,7 @@ hs_err_pid* | |
# JIRA Lint specific files | ||
*-test.xml | ||
emails.html | ||
|
||
# IDE files | ||
*.iml | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", "[email protected]"); | ||
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> reportResult | |
body += "</p>"; | ||
body += "<p>If you are confused, or think this email has been sent in error, hit reply to let me know.</p>"; | ||
body += "<p>Thanks,</p>"; | ||
body += "<p>Paul (via the JIRA Lint tool)</p>"; | ||
body += "<p>RHBQ Release Coordinator (via the JIRA Lint tool)</p>"; | ||
|
||
return body; | ||
} | ||
|