This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
rotini/renovate.json5

41 lines
1.1 KiB
Text
Raw Normal View History

{
"$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"]
}