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:18 UTC

[beam] branch damccorm-patch-1 created (now 562301ea090)

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

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


      at 562301ea090 Remove colon in issue report

This branch includes the following new commits:

     new 562301ea090 Remove colon in issue report

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by da...@apache.org.
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"