-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(renovate): improve formatting and structure in renovate.json
- Loading branch information
1 parent
397b78b
commit 34b99cc
Showing
1 changed file
with
29 additions
and
53 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,66 +1,42 @@ | ||
{ | ||
"$schema":"https://docs.renovatebot.com/renovate-schema.json", | ||
"extends":[ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"dependencyDashboardAutoclose":true, | ||
"lockFileMaintenance":{ | ||
"enabled":true, | ||
"schedule":"* * * * *", | ||
"automerge":true | ||
"dependencyDashboardAutoclose": true, | ||
"lockFileMaintenance": { | ||
"enabled": true, | ||
"schedule": ["* * * * *"], | ||
"automerge": true | ||
}, | ||
"packageRules":[ | ||
"packageRules": [ | ||
{ | ||
"matchDatasources":[ | ||
"pypi" | ||
], | ||
"groupName":"Python: Dependencies (Minor and Patch)", | ||
"matchFileNames":[ | ||
"pyproject.toml" | ||
], | ||
"matchUpdateTypes":[ | ||
"minor", | ||
"patch" | ||
], | ||
"automerge":true, | ||
"matchCurrentVersion":"/^\\d+\\./" | ||
"matchDatasources": ["pypi"], | ||
"groupName": "Python: Dependencies (Minor and Patch)", | ||
"matchFileNames": ["pyproject.toml"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"automerge": true, | ||
"matchCurrentVersion": "/^\\d+\\./" | ||
}, | ||
{ | ||
"matchDatasources":[ | ||
"pypi" | ||
], | ||
"groupName":"Python: Dependencies (Major)", | ||
"matchFileNames":[ | ||
"pyproject.toml" | ||
], | ||
"matchUpdateTypes":[ | ||
"major" | ||
], | ||
"schedule":[ | ||
"* * * * *" | ||
], | ||
"automerge":false, | ||
"matchCurrentVersion":"/^\\d+\\./" | ||
"matchDatasources": ["pypi"], | ||
"groupName": "Python: Dependencies (Major)", | ||
"matchFileNames": ["pyproject.toml"], | ||
"matchUpdateTypes": ["major"], | ||
"automerge": false, | ||
"matchCurrentVersion": "/^\\d+\\./" | ||
}, | ||
{ | ||
"matchDatasources":[ | ||
"docker" | ||
], | ||
"groupName":"Docker: Base Images and Dependencies", | ||
"schedule":[ | ||
"before 3am on the first day of the month" | ||
], | ||
"automerge":false | ||
"matchDatasources": ["docker"], | ||
"groupName": "Docker: Base Images and Dependencies", | ||
"schedule": ["before 3am on the first day of the month"], | ||
"automerge": false | ||
} | ||
], | ||
"dockerfile":{ | ||
"fileMatch":[ | ||
"Dockerfile" | ||
], | ||
"automerge":false | ||
"dockerfile": { | ||
"fileMatch": ["Dockerfile"], | ||
"automerge": false | ||
}, | ||
"labels":[ | ||
"dependencies" | ||
], | ||
"timezone":"America/Edmonton" | ||
"labels": ["dependencies"], | ||
"timezone": "America/Edmonton" | ||
} |