From 783537bb1a809f29d29a6dd05e41403540e732f5 Mon Sep 17 00:00:00 2001 From: blam Date: Wed, 12 Jan 2022 11:00:36 +0100 Subject: [PATCH] chore: add back the newline char Signed-off-by: blam --- .github/workflows/dependabot-changeset-maker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-changeset-maker.yml b/.github/workflows/dependabot-changeset-maker.yml index 8ed71f1cc3..e38ce12c6d 100644 --- a/.github/workflows/dependabot-changeset-maker.yml +++ b/.github/workflows/dependabot-changeset-maker.yml @@ -35,7 +35,7 @@ jobs: async function createChangeset(fileName, commitMessage, packages) { const pkgs = packages.map(pkg => `'${pkg}': patch`).join('\n'); const message = commitMessage.replace(/([bB])ump ([\S]+)/, '$1ump `$2`').trim(); - const body = `---\n${pkgs}\n---\n\n${message}`; + const body = `---\n${pkgs}\n---\n\n${message}\n`; await fs.writeFile(fileName, body); }