40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"labels": ["dependencies"],
|
|
"packageRules": [
|
|
{
|
|
"description": "Backend-related updates",
|
|
"matchFileNames": ["backend/**"],
|
|
"addLabels": ["backend"]
|
|
},
|
|
{
|
|
"description": "Frontend-related updates",
|
|
"matchFileNames": ["frontend/**"],
|
|
"addLabels": ["frontend"]
|
|
},
|
|
{
|
|
"description": "Automerge patch updates in frontend packages",
|
|
"matchFileNames": ["frontend/**"],
|
|
"matchUpdateTypes": ["patch"],
|
|
"addLabels": ["automerge"],
|
|
"automerge": true
|
|
},
|
|
{
|
|
"description": "Automerge any test/formatting-related minor or patch updates",
|
|
"matchPackagePatterns": [
|
|
"^@testing-library\/",
|
|
"^axios-mock-adapter$",
|
|
"^jsdom$",
|
|
"^vitest$",
|
|
"^@biomejs\/"
|
|
],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"addLabels": ["automerge", "test-dependencies"],
|
|
"automerge": true
|
|
}
|
|
],
|
|
"reviewers": ["mcataford"]
|
|
}
|