Created
October 30, 2024 08:27
-
-
Save michielgerritsen/6bf9b46c172fa54d4fbe0f9f1a0443df to your computer and use it in GitHub Desktop.
Renovate.json that I use on my Magento projects
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
{ | |
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | |
"extends": [ | |
"config:recommended" | |
], | |
"ignorePaths": [ | |
".ddev/" | |
], | |
"labels": ["dependencies"], | |
"timezone": "Europe/Amsterdam", | |
"schedule": [ | |
"on Monday through Thursday after 1:00am before 7:00am" | |
], | |
"automergeSchedule": [ | |
"on Monday through Thursday after 1:00am before 7:00am" | |
], | |
"packageRules": [ | |
{ | |
"matchPackageNames": ["/magento/"], | |
"groupName": "magento" | |
}, | |
{ | |
"matchManagers": ["npm"], | |
"groupName": "npm" | |
}, | |
{ | |
"matchUpdateTypes": ["minor", "patch", "pin", "digest"], | |
"automerge": true | |
}, | |
{ | |
"packageNames": ["magento/product-community-edition"], | |
"automerge": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment