Skip to content

Commit 96e25b5

Browse files
committed
fixup! tools: fix failing release-proposal linter for LTS transitions
1 parent f601144 commit 96e25b5

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
@@ -32,7 +32,7 @@ if (commitListingStart === -1) {
3232
assert.ok(releaseStart, 'Could not determine the start of the release section');
3333
const releaseEnd = changelog.indexOf('\n\n<a', releaseStart.index);
3434
assert.notStrictEqual(releaseEnd, -1, 'Could not determine the end of the release section');
35-
commitList = changelog.slice(commitListingStart, commitListingEnd + 1);
35+
commitList = changelog.slice(commitListingStart, releaseEnd + 1);
3636
}
3737

3838
// Normalize for consistent comparison

0 commit comments

Comments
 (0)