mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-15 16:32:36 +00:00
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:
parent
5f1880cb17
commit
fc44ab4749
1 changed files with 10 additions and 2 deletions
12
.github/renovate.json
vendored
12
.github/renovate.json
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue