Skip to content

Commit

Permalink
chore: add renovate config for automerge and label
Browse files Browse the repository at this point in the history
  • Loading branch information
zenlex committed Mar 10, 2024
1 parent 4c57578 commit 56ef524
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,53 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"matchDepTypes": [
"devDependencies"
],
"matchPackagePatterns": [
"lint",
"prettier"
],
"automerge": true
},
{
"matchUpdateTypes": [
"patch"
],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"labels": [
"deps",
"patch"
]
},
{
"matchUpdateTypes": [
"minor"
],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"labels": [
"deps",
"minor"
]
},
{
"matchUpdateTypes": [
"major"
],
"automerge": false,
"labels": [
"deps",
"major"
]
}
]
}

0 comments on commit 56ef524

Please sign in to comment.