From c9c57a765dbaae7960deef80c0471766b26636d6 Mon Sep 17 00:00:00 2001 From: Kenn Knowles Date: Wed, 10 Aug 2022 13:52:32 -0700 Subject: [PATCH] Include total in header of issue report (#22475) --- scripts/ci/issue-report/generateReport.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/issue-report/generateReport.js b/scripts/ci/issue-report/generateReport.js index 2872bd8399fc..07dd92f3df82 100644 --- a/scripts/ci/issue-report/generateReport.js +++ b/scripts/ci/issue-report/generateReport.js @@ -99,7 +99,8 @@ async function generateReport() { } if (shouldSend) { - sendReport("Beam High Priority Issue Report", report); + const totalCount = unassignedP1Issues.length + oldP1Issues.length + unassignedP0Issues.length + oldP0Issues.length + sendReport(`Beam High Priority Issue Report (${totalCount})`, report); } }