Fix warning message
This commit is contained in:
parent
3140d6ce8c
commit
e99113e4cb
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ if (includesIssueUrl) {
|
||||||
warn(
|
warn(
|
||||||
[
|
[
|
||||||
"This PR includes links to the following GitHub Issues: " +
|
"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.",
|
"If this pull requests aims to close an issue, please include a `Closes #ISSUE` line at the top of the PR body.",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue