Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): migrate renovate config #3911

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"extends": [
"config:base",
"config:semverAllMonthly"
],
"extends": ["config:recommended", "config:semverAllMonthly"],
"baseBranches": ["main"],
"ignorePaths": [
"**/flexible_nodejs16_and_earlier/**"
],
"ignorePaths": ["**/flexible_nodejs16_and_earlier/**"],
"packageRules": [
{
"matchUpdateTypes": ["major"],
Expand All @@ -19,19 +14,19 @@
"enabled": false
},
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"pinDigests": true,
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"pinDigests": true
}
],
"force": {
"constraints": {
"node": "< 15.0.0"
}
},
"dependencyDashboardAutoclose": true,
"dependencyDashboardAutoclose": true,
"schedule": "after 11am every 3 weeks on Monday",
"stabilityDays": 15,
"pinVersions": false,
"rebaseStalePrs": true
"minimumReleaseAge": "15 days",
"rangeStrategy": "replace",
"rebaseWhen": "behind-base-branch"
}