Skip to content

Commit

Permalink
update renovate config
Browse files Browse the repository at this point in the history
notably, disable updates for bevy
  • Loading branch information
jcornaz committed Feb 18, 2024
1 parent 9576f8b commit 0fbbc7e
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
{
"extends": [
"config:base", ":automergePatch", "schedule:weekends", ":semanticCommitTypeAll(chore)"
],
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Zurich",
"schedule": ["after 10pm", "before 5:00am"],
"packageRules": [
{
"matchDepTypes": ["dev-dependencies"],
"matchPackageNames": "bevy",
"enabled": false
},
{
"matchCurrentVersion": ">=1.0.0",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchCurrentVersion": ">=0.1.0 <1.0.0",
"matchUpdateTypes": [
"patch"
],
"automerge": true
},
{
"matchDepTypes": [
"dev-dependencies"
],
"automerge": true
}
]
Expand Down

0 comments on commit 0fbbc7e

Please sign in to comment.