1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

chore: re-enable renovate (#4955)

* Chore: reenable renovate

* chore(renovate): Don't group major updates

* chore(renovate): Use matchFileNames
This commit is contained in:
bo0tzz 2023-11-11 23:31:58 +01:00 committed by GitHub
parent 35767591d2
commit 26fd797ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,17 +3,19 @@
"extends": ["config:base"],
"packageRules": [
{
"matchPaths": ["mobile"],
"groupName": "mobile"
"matchFileNames": ["mobile/**"],
"groupName": "mobile",
"matchUpdateTypes": ["minor", "patch"]
},
{
"matchPaths": ["server"],
"groupName": "server"
"matchFileNames": ["server/**"],
"groupName": "server",
"matchUpdateTypes": ["minor", "patch"]
},
{
"matchPaths": ["web"],
"groupName": "web"
"matchFileNames": ["web/**"],
"groupName": "web",
"matchUpdateTypes": ["minor", "patch"]
}
],
"enabled": false
}