-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): migrate config .github/renovate.json5
- Loading branch information
1 parent
4004ffd
commit c95f57d
Showing
1 changed file
with
33 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,45 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
extends: [ | ||
'config:recommended', | ||
], | ||
"automerge": false, | ||
"assignees": [ | ||
"pierluigilenoci" | ||
automerge: false, | ||
assignees: [ | ||
'pierluigilenoci', | ||
], | ||
"schedule": [ | ||
"before 5am every day" | ||
schedule: [ | ||
'before 5am', | ||
], | ||
"packageRules": [ | ||
packageRules: [ | ||
{ | ||
"description": "Group all patch updates per package", | ||
"updateTypes": ["patch"], | ||
"groupName": "all-patch-updates", | ||
"bumpVersion": "patch" | ||
description: 'Group all patch updates per package', | ||
matchUpdateTypes: [ | ||
'patch', | ||
], | ||
groupName: 'all-patch-updates', | ||
bumpVersion: 'patch', | ||
}, | ||
{ | ||
"description": "Group all minor updates per package", | ||
"updateTypes": ["minor"], | ||
"groupName": "all-minor-updates", | ||
"bumpVersion": "patch" | ||
description: 'Group all minor updates per package', | ||
matchUpdateTypes: [ | ||
'minor', | ||
], | ||
groupName: 'all-minor-updates', | ||
bumpVersion: 'patch', | ||
}, | ||
{ | ||
"description": "Group all major updates per package", | ||
"updateTypes": ["major"], | ||
"groupName": "all-major-updates", | ||
"bumpVersion": "patch" | ||
} | ||
description: 'Group all major updates per package', | ||
matchUpdateTypes: [ | ||
'major', | ||
], | ||
groupName: 'all-major-updates', | ||
bumpVersion: 'patch', | ||
}, | ||
], | ||
"platformAutomerge": true, | ||
"lockFileMaintenance": { | ||
"enabled": true | ||
platformAutomerge: true, | ||
lockFileMaintenance: { | ||
enabled: true, | ||
}, | ||
"baseBranches": [ | ||
"main" | ||
] | ||
baseBranches: [ | ||
'main', | ||
], | ||
} |