Skip to content

Commit

Permalink
feat: use renovate bot for deps updates
Browse files Browse the repository at this point in the history
GitHub's dependabot does not support pnpm yet
  • Loading branch information
chrisbbreuer committed Apr 19, 2022
1 parent f9c3a18 commit e99f415
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/dependabot.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/renovate.json
@@ -0,0 +1,35 @@
{
"extends": [
"config:base"
],
"assigneesFromCodeOwners": true,
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"automerge": true,
"labels": [
"dependencies"
]
},
{
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"major"
],
"labels": [
"dependencies",
"breaking"
]
}
]
}

0 comments on commit e99f415

Please sign in to comment.