diff --git a/script/danger/dangerfile.ts b/script/danger/dangerfile.ts index 3c64c457acaa7fbdd5642b442be6359b9c3124ba..d8e33e9ca1cf4385045cbf8310eb94765a75e4ab 100644 --- a/script/danger/dangerfile.ts +++ b/script/danger/dangerfile.ts @@ -56,7 +56,7 @@ if (includesIssueUrl) { warn( [ "This PR includes links to the following GitHub Issues: " + - issues.join(", "), + issues.map((issue) => `#${issue}`).join(", "), "If this pull requests aims to close an issue, please include a `Closes #ISSUE` line at the top of the PR body.", ].join("\n"), );