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/23 20:33:59 UTC

[beam] branch master updated: Fix links for issue report (#22033)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 90e64f732a9 Fix links for issue report (#22033)
90e64f732a9 is described below

commit 90e64f732a9486dd16e6bff7f31cbb5af49a5a33
Author: Pablo Estrada <pa...@users.noreply.github.com>
AuthorDate: Thu Jun 23 13:33:53 2022 -0700

    Fix links for issue report (#22033)
---
 scripts/ci/issue-report/generateReport.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/ci/issue-report/generateReport.js b/scripts/ci/issue-report/generateReport.js
index 20cd20760cb..1b673dea8d4 100644
--- a/scripts/ci/issue-report/generateReport.js
+++ b/scripts/ci/issue-report/generateReport.js
@@ -25,7 +25,7 @@ function sendReport(title, header, issues) {
     }
     let report = header + "\n\n"
     for (const issue of issues) {
-        report += `${issue.url}: ${issue.title}\n`;
+        report += `${issue.html_url}: ${issue.title}\n`;
     }
       
       nodemailer.createTransport({
@@ -115,4 +115,4 @@ validateEnvSet('ISSUE_REPORT_SENDER_EMAIL_ADDRESS')
 validateEnvSet('ISSUE_REPORT_SENDER_EMAIL_PASSWORD')
 validateEnvSet('ISSUE_REPORT_RECIPIENT_EMAIL_ADDRESS')
 
-generateReport();
\ No newline at end of file
+generateReport();