ci: ignore template bump commits in release notes [skip ci]

This commit is contained in:
Elliot DeNolf
2025-08-21 16:12:03 -04:00
parent 32069e2056
commit 60cfc31f65

View File

@@ -115,6 +115,11 @@ export const generateReleaseNotes = async (args: Args = {}): Promise<ChangelogRe
const typedCommitType: Section = c.type as Section
// Ignore template bump PRs formatted as "templates: bump for vX.X.X"
if (c.description.includes('bump for v')) {
return sections
}
if (commitTypesForChangelog.includes(typedCommitType)) {
if (!sections[typedCommitType]) {
sections[typedCommitType] = []