Skip to content

Commit 28ebe0e

Browse files
committed
fixup! tools: fix linter for semver-major release proposals
1 parent 4330180 commit 28ebe0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/actions/lint-release-proposal-commit-list.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const commitListingStart = changelog.indexOf('\n### Commits\n');
2323
let commitList;
2424
if (commitListingStart === -1) {
2525
// We're preparing a semver-major release.
26-
assert.match(changelog, /\n### Semver-Major Commits\n/)
26+
assert.match(changelog, /\n### Semver-Major Commits\n/);
2727
// The proposal should contain only the release commit.
2828
commitList = '';
2929
} else {

0 commit comments

Comments
 (0)