Skip to content

Commit

Permalink
chore(config): migrate config .github/renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 4, 2025
1 parent a8c4c83 commit 2fb4cbb
Showing 1 changed file with 67 additions and 23 deletions.
90 changes: 67 additions & 23 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,107 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assignees": ["team:console"],
"assignees": [
"team:console"
],
"assigneesSampleSize": 1,
"automerge": false,
"dependencyDashboard": true,
"enabledManagers": ["github-actions", "npm"],
"extends": ["config:base", ":combinePatchMinorReleases"],
"labels": ["dependencies"],
"enabledManagers": [
"github-actions",
"npm"
],
"extends": [
"config:recommended",
":combinePatchMinorReleases"
],
"labels": [
"dependencies"
],
"prConcurrentLimit": 10,
"prHourlyLimit": 5,
"rangeStrategy": "pin",
"rebaseWhen": "auto",
"reviewers": ["team:console"],
"reviewers": [
"team:console"
],
"reviewersSampleSize": 2,
"semanticCommitScope": "deps",
"semanticCommitType": "chore",
"ignorePaths": ["packages_deprecated/**/package.json"],
"ignorePaths": [
"packages_deprecated/**/package.json"
],
"packageRules": [
{
"matchDepTypes": ["engines", "peerDependencies"],
"versionStrategy": "widen"
"matchDepTypes": [
"engines",
"peerDependencies"
],
"rangeStrategy": "widen"
},
{
"matchManagers": ["github-actions"],
"matchManagers": [
"github-actions"
],
"semanticCommitScope": "devDeps",
"automerge": true,
"autoApprove": true
},
{
"semanticCommitScope": "devDeps",
"matchDepTypes": ["packageManager", "devDependencies"],
"matchUpdateTypes": ["major"]
"matchDepTypes": [
"packageManager",
"devDependencies"
],
"matchUpdateTypes": [
"major"
]
},
{
"semanticCommitScope": "devDeps",
"matchDepTypes": ["packageManager", "devDependencies"],
"matchUpdateTypes": ["minor", "patch"]
"matchDepTypes": [
"packageManager",
"devDependencies"
],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"labels": ["UPDATE-MAJOR"],
"stabilityDays": 14,
"matchUpdateTypes": ["major"]
"labels": [
"UPDATE-MAJOR"
],
"minimumReleaseAge": "14 days",
"matchUpdateTypes": [
"major"
]
},
{
"labels": ["UPDATE-MINOR"],
"stabilityDays": 7,
"matchUpdateTypes": ["minor"],
"labels": [
"UPDATE-MINOR"
],
"minimumReleaseAge": "7 days",
"matchUpdateTypes": [
"minor"
],
"automerge": true,
"autoApprove": true
},
{
"labels": ["UPDATE-PATCH"],
"stabilityDays": 3,
"matchUpdateTypes": ["patch"],
"labels": [
"UPDATE-PATCH"
],
"minimumReleaseAge": "3 days",
"matchUpdateTypes": [
"patch"
],
"automerge": true,
"autoApprove": true
},
{
"matchDepTypes": ["engines"],
"matchDepTypes": [
"engines"
],
"rangeStrategy": "widen"
}
]
Expand Down

0 comments on commit 2fb4cbb

Please sign in to comment.