Add renovate deps groups (#2417)

Co-authored-by: Patrick Schratz <patrick.schratz@gmail.com>
This commit is contained in:
Robert Kaussow 2023-09-10 10:07:50 +02:00 committed by GitHub
parent 5bb8ff546d
commit 6a61bb0a01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 6 deletions

30
.github/renovate.json vendored Normal file
View file

@ -0,0 +1,30 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":maintainLockFilesWeekly"],
"prConcurrentLimit": 5,
"packageRules": [
{
"groupName": "golang deps non-major",
"matchManagers": ["gomod"],
"matchUpdateTypes": ["minor", "patch"],
"extends": ["schedule:daily"],
"labels": ["dependencies"]
},
{
"groupName": "web npm deps non-major",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["web/package.json"],
"extends": ["schedule:daily"],
"labels": ["dependencies"]
},
{
"groupName": "docs npm deps non-major",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["docs/**/package.json"],
"extends": ["schedule:daily"],
"labels": ["dependencies"]
}
]
}

View file

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}