Skip to content

Commit

Permalink
chore: update renovate configuration with groups (#5323)
Browse files Browse the repository at this point in the history
  • Loading branch information
petermakowski committed Feb 28, 2024
1 parent 7fa1320 commit 6a9567f
Showing 1 changed file with 33 additions and 7 deletions.
40 changes: 33 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,48 @@
{
"extends": ["config:base", "group:allNonMajor", "schedule:weekly"],
"labels": ["Maintenance 🔨"],
"timezone": "Europe/London",
"packageRules": [
{
"groupName": "internal dependencies",
"groupSlug": "internal",
"matchPackagePatterns": [
"^@canonical",
"^canonicalwebteam",
"^vanilla-framework",
"^jquery",
"^prettier"
],
"matchPackagePatterns": ["^@canonical", "^vanilla-framework"],
"schedule": ["at any time"]
},
{
"matchPackagePatterns": ["^@sentry"],
"enabled": false
},
{
"groupName": "React ecosystem",
"groupSlug": "react-ecosystem",
"matchPackagePatterns": ["^react", "^@types/react"],
"schedule": ["before 5am on monday"]
},
{
"groupName": "Testing libraries",
"groupSlug": "testing-libraries",
"matchPackagePatterns": [
"^@testing-library",
"^jest",
"^cypress",
"^@cypress",
"^@percy"
],
"schedule": ["before 5am on tuesday"]
},
{
"groupName": "Redux ecosystem",
"groupSlug": "redux-ecosystem",
"matchPackagePatterns": ["^redux", "^@reduxjs/toolkit", "^react-redux"],
"schedule": ["before 5am on wednesday"]
},
{
"groupName": "Development tools",
"groupSlug": "dev-tools",
"matchPackageNames": ["typescript", "eslint", "prettier", "nodemon"],
"matchUpdateTypes": ["minor", "patch"],
"schedule": ["before 5am on thursday"]
}
]
}

0 comments on commit 6a9567f

Please sign in to comment.