Skip to content

Instantly share code, notes, and snippets.

@michielgerritsen
Created October 30, 2024 08:27
Show Gist options
  • Save michielgerritsen/6bf9b46c172fa54d4fbe0f9f1a0443df to your computer and use it in GitHub Desktop.
Save michielgerritsen/6bf9b46c172fa54d4fbe0f9f1a0443df to your computer and use it in GitHub Desktop.
Renovate.json that I use on my Magento projects
{
"$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