Skip to content

Commit

Permalink
Only apply the weekly schedule to non-major updates
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown committed Jul 30, 2024
1 parent d5384ce commit c150b01
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "group:allNonMajor", "schedule:weekly"],
"semanticCommits": "disabled"
"extends": ["config:base"],
"semanticCommits": "disabled",
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackageNames": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"extends": ["schedule:weekly"]
}
]
}

0 comments on commit c150b01

Please sign in to comment.