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

refactor: only allow for major releases to be aired, no minor updates #3460

Merged
merged 4 commits into from
Aug 17, 2023
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
32 changes: 22 additions & 10 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,30 @@
"extends": [
"config:base"
],
"dependencyDashboardAutoclose": true,
"schedule": "after 11am every 2 weeks on Monday",
"timezone": "America/Los_Angeles",
"stabilityDays": 5,
"prConcurrentLimit": 0,
"prHourlyLimit": 4,
"rangeStrategy": "pin",
"pinVersions": false,
"rebaseStalePrs": false,
"baseBranches": ["main"],
"packageRules": [
{
"matchUpdateTypes": ["major"],
"matchBaseBranches": ["main"],
"addLabels": ["major"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchBaseBranches": ["main"],
"enabled": false
}
],
"force": {
"constraints": {
"node": "< 15.0.0"
}
}
},
"prConcurrentLimit": 0,
"dependencyDashboardAutoclose": true,
"schedule": "after 11am every 3 weeks on Monday",
"timezone": "America/Los_Angeles",
"stabilityDays": 15,
"rangeStrategy": "pin",
"pinVersions": false,
"rebaseStalePrs": false
}
Loading