Skip to content

Commit

Permalink
Merge pull request #6 from tulsawebdevs/renovate/configure
Browse files Browse the repository at this point in the history
Configure Renovate
  • Loading branch information
zenlex authored Mar 10, 2024
2 parents ed4945c + 56ef524 commit a1db3a6
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"$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 a1db3a6

Please sign in to comment.