0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-11 02:23:09 -05:00

ci: group docker node and npm node updates together (#10625)

also should fix @types/node not being correct versions
This commit is contained in:
Zack Pollard 2024-06-25 17:49:50 +03:00 committed by GitHub
parent 5912fcc393
commit 91af793b52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,6 +15,7 @@
"groupName": "typescript-projects", "groupName": "typescript-projects",
"matchUpdateTypes": ["minor", "patch"], "matchUpdateTypes": ["minor", "patch"],
"excludePackagePrefixes": ["exiftool", "reflect-metadata"], "excludePackagePrefixes": ["exiftool", "reflect-metadata"],
"excludePackageNames": ["node", "@types/node"],
"schedule": "on tuesday" "schedule": "on tuesday"
}, },
{ {
@ -57,6 +58,15 @@
"minimumReleaseAge": "0" "minimumReleaseAge": "0"
}, },
{ {
"matchDatasources": ["npm"],
"rangeStrategy": "bump",
"groupName": "node",
"versioning": "node",
"matchPackageNames": ["node", "@types/node"],
"schedule": "on tuesday"
},
{
"groupName": "node",
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
"matchPackageNames": ["node"], "matchPackageNames": ["node"],
"versionCompatibility": "^(?<version>[^-]+)(?<compatibility>-.*)?$", "versionCompatibility": "^(?<version>[^-]+)(?<compatibility>-.*)?$",