Skip to content
Open
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
61 changes: 59 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,71 @@
"extends": [
"config:recommended"
],
"baseBranchPatterns": [
"dev"
],
"schedule": [
"before 9am on Saturday"
],
"timezone": "Europe/Brussels",
"labels": [
"dependencies",
"renovate"
],
"packageRules": [
{
"description": "Automerge minor and patch updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Group all NuGet minor/patch updates together",
"matchManagers": [
"nuget"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
"groupName": "NuGet minor/patch updates"
},
{
"description": "Group all NuGet major updates together",
"matchManagers": [
"nuget"
],
"matchUpdateTypes": [
"major"
],
"groupName": "NuGet major updates",
"dependencyDashboardApproval": true
},
{
"description": "Group all npm minor/patch updates together",
"matchManagers": [
"npm"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "npm minor/patch updates"
},
{
"description": "Group all npm major updates together",
"matchManagers": [
"npm"
],
"matchUpdateTypes": [
"major"
],
"groupName": "npm major updates",
"dependencyDashboardApproval": true
}
],
"platformAutomerge": true
}
}
Loading