Skip to content

Commit

Permalink
Remove extraneous space character (awslabs#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermckinnon authored and edmondceausu committed Nov 15, 2023
1 parent be2bfcb commit 79a050a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if (changelog.includes(release.data.name)) {
throw new Error(`changelog already includes ${release.data.name}`);
}
const newEntry = `### ${release.data.name}\n${release.data.body}`;
const newEntry = `### ${release.data.name}\n${release.data.body}`;
const updatedChangelog = changelog.replace(placeholder, placeholder + '\n\n' + newEntry);
fs.writeFileSync(changelogPath, updatedChangelog);
- uses: peter-evans/create-pull-request@v4
Expand Down

0 comments on commit 79a050a

Please sign in to comment.