chore: needs a new line at the end

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-12 10:46:12 +01:00
parent 18023e40ce
commit b7ecbb6014
@@ -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`');
const body = `---\n${pkgs}\n---\n\n${message}`;
const body = `---\n${pkgs}\n---\n\n${message}\n`;
await fs.writeFile(fileName, body);
}