chore: make renovate be less spamy

This commit is contained in:
Vlad Frangu
2024-03-18 22:06:09 +02:00
parent 8640cdd360
commit fcf14c3ea2

View File

@@ -1,5 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": ["website/"]
"extends": ["config:recommended", ":semanticCommitTypeAll(chore)"],
"semanticCommits": "enabled",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 1pm"]
},
"ignorePaths": ["website/"],
"packageRules": [
{
"matchUpdateTypes": ["patch", "minor"],
"matchCurrentVersion": "!/^0/",
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major"
}
],
"schedule": ["every weekday"]
}