Skip to content

Commit

Permalink
chore(project): add the Renovate config file
Browse files Browse the repository at this point in the history
  • Loading branch information
timoa committed Mar 28, 2022
1 parent 98326df commit e659811
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>renovatebot/.github"
],
"platform": "github",
"platformAutomerge": true,
"branchPrefix": "fix/deps/",
"addLabels": [
"dependencies",
"security"
],
"packageRules": [
{
"description": "Automerge renovate minor and patch updates",
"matchPackageNames": [
"renovate/renovate"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"branchTopic": "{{{depNameSanitized}}}-{{{currentValue}}}"
},
{
"description": "Allow updates after 15 days (exclude renovate)",
"excludePackageNames": [
"renovate/renovate"
],
"separateMinorPatch": true,
"stabilityDays": 15
}
]
}

0 comments on commit e659811

Please sign in to comment.