Skip to content

Commit

Permalink
feat(bot): initialize renovate bot
Browse files Browse the repository at this point in the history
this thing is useful for upgrading dependencies through pull requests
  • Loading branch information
azukashi committed Jul 20, 2023
1 parent e5cad2f commit 552d103
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"reviewers": ["BayuDC", "gifaldyazkaa"],
"assignees": ["BayuDC", "gifaldyazkaa"],
"dependencyDashboard": false,
"fetchReleaseNotes": "branch",
"packageRules": [
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"labels": ["dependencies"]
},
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["major"],
"labels": ["dependencies", "breaking"]
}
]
}

0 comments on commit 552d103

Please sign in to comment.