Skip to content

Commit 4c7e45f

Browse files
authored
fix: enforce fix(deps) semantic commit prefix in renovate config
Without an explicit semanticCommitType override, Renovate defaults major-version and github-actions bumps to a `chore:` commit prefix, which violates this org's fix:/feat:-only commit convention. Adds the same semanticCommits block already used by mcp-core and web-core.
1 parent 8101060 commit 4c7e45f

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

renovate.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,16 @@
131131
],
132132
"enabled": false
133133
}
134-
]
134+
],
135+
"semanticCommits": "enabled",
136+
"commitMessagePrefix": "fix(deps):",
137+
"commitMessageAction": "update",
138+
"commitMessageTopic": "{{depName}}",
139+
"semanticCommitType": "fix",
140+
"semanticCommitScope": "deps",
141+
"golang": {
142+
"postUpdateOptions": [
143+
"gomodTidy"
144+
]
145+
}
135146
}

0 commit comments

Comments
 (0)