Skip to content

Commit

Permalink
Include total in header of issue report (#22475)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennknowles committed Aug 10, 2022
1 parent e3dec0d commit c9c57a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/ci/issue-report/generateReport.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit c9c57a7

Please sign in to comment.