chore(renovate): treat Renovate major version bumps the same (#964)

As noticed after the release of v42, we had a couple of PRs (#960
and #961) which were bumping the major version of Renovate, but only one
was treated as a major version.

This makes sure that we're treating them the same, so they get bumped
together.
This commit is contained in:
Jamie Tanna 2025-11-17 11:22:42 +00:00 committed by GitHub
parent 5f1880cb17
commit fc44ab4749
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

12
.github/renovate.json vendored
View file

@ -40,13 +40,21 @@
{ {
"description": "Don't pin renovate updates", "description": "Don't pin renovate updates",
"matchPackageNames": ["ghcr.io/renovatebot/renovate"], "matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"matchFileNames": ["action.yml", "src/docker.ts"], "matchFileNames": [
"action.yml",
"src/docker.ts",
".github/workflows/build.yml"
],
"pinDigests": false "pinDigests": false
}, },
{ {
"description": "Use feat! semantic type for renovate major", "description": "Use feat! semantic type for renovate major",
"matchPackageNames": ["ghcr.io/renovatebot/renovate"], "matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"matchFileNames": ["action.yml", "src/docker.ts"], "matchFileNames": [
"action.yml",
"src/docker.ts",
".github/workflows/build.yml"
],
"matchUpdateTypes": ["major"], "matchUpdateTypes": ["major"],
"commitMessagePrefix": "feat(deps)!:", "commitMessagePrefix": "feat(deps)!:",
"additionalBranchPrefix": "renovate-major" "additionalBranchPrefix": "renovate-major"