We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 698e53e commit 958d48eCopy full SHA for 958d48e
.github/workflows/update-changelog.yaml
@@ -42,7 +42,7 @@ jobs:
42
if (changelog.includes(release.data.name)) {
43
throw new Error(`changelog already includes ${release.data.name}`);
44
}
45
- const newEntry = `### ${release.data.name}\n${release.data.body}`;
+ const newEntry = `### ${release.data.name}\n${release.data.body}`;
46
const updatedChangelog = changelog.replace(placeholder, placeholder + '\n\n' + newEntry);
47
fs.writeFileSync(changelogPath, updatedChangelog);
48
- uses: peter-evans/create-pull-request@v4
0 commit comments