diff --git a/scripts/releaseChangelog.mjs b/scripts/releaseChangelog.mjs index c7f32a68bc93ef..3f8edfc997212c 100644 --- a/scripts/releaseChangelog.mjs +++ b/scripts/releaseChangelog.mjs @@ -32,9 +32,14 @@ function parseTags(commitMessage) { * @param {Octokit.ReposCompareCommitsResponseCommitsItem} commitsItem */ function filterCommit(commitsItem) { + const commitMessage = commitsItem.commit.message; // TODO: Use labels - // Filter dependency updates - return !commitsItem.commit.message.startsWith('Bump'); + return ( + // Filter renovate dependencies updates + !commitMessage.startsWith('Bump') && + // Filter website changes, no implications for library users + !commitMessage.startsWith('[website]') + ); } async function findLatestTaggedVersion() {