You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/06/24 17:23:19 UTC

[beam] 01/01: Remove colon in issue report

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch damccorm-patch-1
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 562301ea090f1c0159169cbb73a1bede1573bd31
Author: Danny McCormick <da...@google.com>
AuthorDate: Fri Jun 24 13:23:12 2022 -0400

    Remove colon in issue report
    
    This causes some email clients to not recognize it as a valid url
---
 scripts/ci/issue-report/generateReport.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/issue-report/generateReport.js b/scripts/ci/issue-report/generateReport.js
index f0f175c8e9e..2872bd8399f 100644
--- a/scripts/ci/issue-report/generateReport.js
+++ b/scripts/ci/issue-report/generateReport.js
@@ -46,7 +46,7 @@ function sendReport(title, report) {
 function formatIssues(header, issues) {
     let report = header + "\n\n"
     for (const issue of issues) {
-        report += `${issue.html_url}: ${issue.title}\n`;
+        report += `${issue.html_url} ${issue.title}\n`;
     }
     report += "\n\n"