3 Commits

Author SHA1 Message Date
Julien Valverdé
8cd4caeaf0 Fix Renovate config
All checks were successful
Build / build (push) Successful in 47s
Lint / lint (push) Successful in 12s
2025-11-04 01:24:59 +01:00
Julien Valverdé
b66aa99450 Fix Renovate config
All checks were successful
Build / build (push) Successful in 51s
Lint / lint (push) Successful in 12s
2025-11-04 00:58:34 +01:00
Julien Valverdé
693e6ec492 Update Renovate config
All checks were successful
Build / build (push) Successful in 1m23s
Lint / lint (push) Successful in 13s
2025-10-13 00:11:54 +02:00

View File

@@ -1,7 +1,11 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:recommended"],
"config:recommended" "baseBranchPatterns": ["next"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"packages/webapp/public/98.css/**"
], ],
"packageRules": [ "packageRules": [
{ {
@@ -11,10 +15,10 @@
"groupSlug": "bun-minor-patch" "groupSlug": "bun-minor-patch"
}, },
{ {
"matchManagers": ["bun", "npm"], "matchManagers": ["dockerfile", "docker-compose"],
"matchUpdateTypes": ["major"], "matchUpdateTypes": ["minor", "patch", "digest"],
"groupName": "bun major updates", "groupName": "docker minor+patch+digest updates",
"groupSlug": "bun-major" "groupSlug": "docker-minor-patch-digest"
} }
] ]
} }