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 f601144 commit 96e25b5Copy full SHA for 96e25b5
1 file changed
tools/actions/lint-release-proposal-commit-list.mjs
@@ -32,7 +32,7 @@ if (commitListingStart === -1) {
32
assert.ok(releaseStart, 'Could not determine the start of the release section');
33
const releaseEnd = changelog.indexOf('\n\n<a', releaseStart.index);
34
assert.notStrictEqual(releaseEnd, -1, 'Could not determine the end of the release section');
35
- commitList = changelog.slice(commitListingStart, commitListingEnd + 1);
+ commitList = changelog.slice(commitListingStart, releaseEnd + 1);
36
}
37
38
// Normalize for consistent comparison
0 commit comments