0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-21 00:52:43 -05: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"], "extends": ["config:base"],
"packageRules": [ "packageRules": [
{ {
"matchPaths": ["mobile"], "matchFileNames": ["mobile/**"],
"groupName": "mobile" "groupName": "mobile",
"matchUpdateTypes": ["minor", "patch"]
}, },
{ {
"matchPaths": ["server"], "matchFileNames": ["server/**"],
"groupName": "server" "groupName": "server",
"matchUpdateTypes": ["minor", "patch"]
}, },
{ {
"matchPaths": ["web"], "matchFileNames": ["web/**"],
"groupName": "web" "groupName": "web",
"matchUpdateTypes": ["minor", "patch"]
} }
], ],
"enabled": false
} }