Skip to content

Commit

Permalink
chore(renovate): Add per-group schedule (#5319)
Browse files Browse the repository at this point in the history
  • Loading branch information
bo0tzz committed Nov 27, 2023
1 parent 4e5eef1 commit ef45e9f
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,48 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"minimumReleaseAge": 5,
"packageRules": [
{
"matchFileNames": ["cli/**"],
"groupName": "@immich/cli",
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": ["minor", "patch"],
"schedule": "on monday"
},
{
"matchFileNames": ["mobile/**"],
"groupName": "mobile",
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": ["minor", "patch"],
"schedule": "on tuesday"
},
{
"matchFileNames": ["server/**"],
"groupName": "server",
"matchUpdateTypes": ["minor", "patch"],
"excludePackagePrefixes": ["exiftool"]
"excludePackagePrefixes": ["exiftool"],
"schedule": "on wednesday"
},
{
"groupName": "exiftool",
"matchPackagePrefixes": ["exiftool"]
"matchPackagePrefixes": ["exiftool"],
"schedule": "on monday"
},
{
"matchFileNames": ["web/**"],
"groupName": "web",
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": ["minor", "patch"],
"schedule": "on thursday"
},
{
"matchFileNames": ["machine-learning/**"],
"groupName": "machine-learning",
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": ["minor", "patch"],
"schedule": "on friday"
},
{
"matchFileNames": [".github/**"],
"groupName": "github-actions"
"groupName": "github-actions",
"schedule": "on friday"
},
{
"groupName": "base-image",
Expand Down

0 comments on commit ef45e9f

Please sign in to comment.