diff --git a/.github/actions/javascript/proposalPoliceComment/index.js b/.github/actions/javascript/proposalPoliceComment/index.js index 49dbe3b52cf7..e000c99bc4ca 100644 --- a/.github/actions/javascript/proposalPoliceComment/index.js +++ b/.github/actions/javascript/proposalPoliceComment/index.js @@ -18487,6 +18487,12 @@ class GithubUtils { }) .then((response) => response.data.workflow_runs[0]?.id); } + /** + * Generate the well-formatted body of a production release. + */ + static getReleaseBody(pullRequests) { + return pullRequests.map((number) => `- ${this.getPullRequestURLFromNumber(number)}`).join('\r\n'); + } /** * Generate the URL of an New Expensify pull request given the PR number. */