From 1e559af8eea12d163cbf6bd755196abd296ebda9 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Mon, 17 Nov 2025 10:27:56 +0000 Subject: [PATCH] chore(renovate): treat Renovate major version bumps the same 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. --- .github/renovate.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 3b42b5bc..ee556b49 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -40,13 +40,21 @@ { "description": "Don't pin renovate updates", "matchPackageNames": ["ghcr.io/renovatebot/renovate"], - "matchFileNames": ["action.yml", "src/docker.ts"], + "matchFileNames": [ + "action.yml", + "src/docker.ts", + ".github/workflows/build.yml" + ], "pinDigests": false }, { "description": "Use feat! semantic type for renovate major", "matchPackageNames": ["ghcr.io/renovatebot/renovate"], - "matchFileNames": ["action.yml", "src/docker.ts"], + "matchFileNames": [ + "action.yml", + "src/docker.ts", + ".github/workflows/build.yml" + ], "matchUpdateTypes": ["major"], "commitMessagePrefix": "feat(deps)!:", "additionalBranchPrefix": "renovate-major"