Skip to content

Commit

Permalink
Migrate config renovate.json (#46)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 30, 2024
1 parent da2cb0d commit ab76b2e
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranches": ["master"],
"baseBranches": [
"master"
],
"extends": [
"config:base",
"config:recommended",
":disableRateLimiting",
"docker:disable"
],
Expand All @@ -11,26 +13,38 @@
},
"packageRules": [
{
"packagePatterns": ["*"],
"updateTypes": ["patch"],
"matchUpdateTypes": [
"patch"
],
"groupName": "all patch dependencies",
"groupSlug": "update-patch-dependencies",
"enabled": true,
"automerge": false
"automerge": false,
"matchPackageNames": [
"*"
]
},
{
"packagePatterns": ["*"],
"updateTypes": ["minor"],
"matchUpdateTypes": [
"minor"
],
"groupName": "all minor dependencies",
"groupSlug": "update-minor-dependencies",
"enabled": true,
"automerge": false
"automerge": false,
"matchPackageNames": [
"*"
]
},
{
"packagePatterns": ["*"],
"updateTypes": ["major"],
"matchUpdateTypes": [
"major"
],
"enabled": true,
"automerge": false
"automerge": false,
"matchPackageNames": [
"*"
]
}
]
}

0 comments on commit ab76b2e

Please sign in to comment.