Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
osvVulnerabilityAlerts: true,
vulnerabilityAlerts: {
semanticCommitType: 'fix',
// Drop Renovate's default `[SECURITY]` title suffix; the `security`
// label below already identifies these PRs.
commitMessageSuffix: '',
// release/v1.2 flags the fix for backporting to the current release
// line; bump it when a new release branch is cut.
labels: ['dependencies', 'security', 'release/v1.2'],
Expand Down Expand Up @@ -161,5 +164,16 @@
matchUpdateTypes: ['major'],
enabled: false,
},

// config:recommended pulls in :semanticPrefixFixDepsChoreOthers,
// which types runtime-dependency bumps as fix(...). We want the
// opposite: every routine bump is chore(...), and only
// vulnerabilityAlerts (above) uses fix(...). This catch-all runs
// last, so it overrides that preset; vulnerabilityAlerts is applied
// as a higher-priority layer for security branches and is unaffected.
{
matchPackageNames: ['*'],
semanticCommitType: 'chore',
},
],
}
Loading