-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Tweak renovate bot to avoid nagging.
- Loading branch information
Showing
2 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Options doc https://docs.renovatebot.com/configuration-options/ | ||
// validate with | ||
// docker run --mount type=bind,source=$(pwd)/.github/renovate.json5,target=/usr/src/app/renovate.json5,readonly -it renovate/renovate renovate-config-validator | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"labels": [ | ||
"dependency-update" | ||
], | ||
// automerge minor deps | ||
"packageRules": [ | ||
{ | ||
"description": "Automatically merge minor and patch-level updates", | ||
"matchUpdateTypes": [ | ||
// where version is: major.minor.patch | ||
"minor", | ||
"patch" | ||
], | ||
"automerge": true, | ||
// Do not create a PR to avoid PR-related email spam, if tests succeed merge directly | ||
// otherwise make a PR if tests fail | ||
"automergeType": "branch" | ||
} | ||
], | ||
"vulnerabilityAlerts": { | ||
"description": "Automatically merge vulnerability fixes", | ||
"labels": [ | ||
"vulnerability-fix" | ||
], | ||
"automerge": true, | ||
}, | ||
"dependencyDashboard": true, | ||
"prConcurrentLimit": 10, | ||
"prHourlyLimit": 5, | ||
// Schedule the bot to run before morning | ||
"timezone": "UTC", | ||
"schedule": [ | ||
"before 9am" | ||
// "before 9am on monday" // once a week before monday morning | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.