Skip to content

Commit

Permalink
chore(renovate): improvment of configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Aug 7, 2024
1 parent 3f99f30 commit 3559553
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
{
"extends": ["config:base"],
"baseBranches": ["$default", "/^(2\\.|3\\.).*/"],
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":semanticCommits", ":disableRateLimiting"],
"baseBranches": ["$default", "2.6", "2.7"],
"labels": ["dependencies"],
"assignees": ["ddecrulle"],
"packageRules": [
{
"description": "Documentation website dependencies",
"matchPaths": ["/docs/**"],
"matchPaths": ["docs/**"],
"matchDepTypes": ["dependencies", "devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "docs website dependencies",
"labels": ["docs"]
"groupSlug": "docs-minor-patch",
"labels": ["docs", "dependencies"]
},
{
"description": "CI dependencies",
"matchPaths": [".github/workflows/**"],
"groupName": "CI dependencies",
"labels": ["ci"]
"labels": ["ci", "dependencies"]
},
{
"matchUpdateTypes": ["patch"],
"automerge": true
},
{
"matchUpdateTypes": ["minor"],
"matchPaths": ["package.json"],
"matchDepTypes": ["dependencies", "devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all minor and patch updates",
"groupSlug": "minor-patch",
"labels": ["dependencies"],
"automerge": true
}
],
"prConcurrentLimit": 5,
"dependencyDashboard": true
}

0 comments on commit 3559553

Please sign in to comment.