Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/renovate.json

This file was deleted.

32 changes: 32 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extends": [
"config:recommended"
],
"schedule": [
"on the 15th day of the month before 12pm"
],
"timezone": "UTC",
"rebaseWhen": "conflicted",
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"groupName": "minor and patch updates"
},
{
"matchUpdateTypes": [
"major"
],
"automerge": false
},
{
"matchUpdateTypes": [
"digest"
],
"automerge": false
}
]
}
Comment on lines 1 to 32
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This creates a root-level renovate.json while .github/renovate.json already exists. Root-level configs take precedence, but having both files is confusing. Consider removing .github/renovate.json to avoid confusion about which config is active.