Sort renovate rules from least to most important (#38)

This commit is contained in:
lukasIO 2024-03-08 06:49:02 +01:00 committed by GitHub
parent 429165556b
commit a38f0514b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,17 +2,17 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchSourceUrlPrefixes": ["https://github.com/livekit/"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "LiveKit dependencies (non-major)",
"automerge": true
},
{
"schedule": "before 6am on the first day of the month",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "devDependencies (non-major)"
},
{
"matchSourceUrlPrefixes": ["https://github.com/livekit/"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "LiveKit dependencies (non-major)",
"automerge": true
}
]
}