From e99113e4cb2675fb559e5b6e147ff9aebe066848 Mon Sep 17 00:00:00 2001 From: Joseph T Lyons Date: Sun, 11 Aug 2024 14:45:46 -0400 Subject: [PATCH] Fix warning message --- script/danger/dangerfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/danger/dangerfile.ts b/script/danger/dangerfile.ts index 3c64c457ac..d8e33e9ca1 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"), );