30 lines
747 B
Plaintext
30 lines
747 B
Plaintext
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
"docker:pinDigests",
|
|
"helpers:pinGitHubActionDigestsToSemver"
|
|
],
|
|
"postUpdateOptions" : [
|
|
"gomodTidy"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
// reduces the number of Renovate PRs
|
|
// (patch updates are typically non-breaking)
|
|
"groupName": "all patch versions",
|
|
"matchUpdateTypes": ["patch"],
|
|
"schedule": ["before 8am every weekday"]
|
|
},
|
|
{
|
|
// avoids these Renovate PRs from trickling in throughout the week
|
|
// (consolidating the review process)
|
|
"matchUpdateTypes": ["minor", "major"],
|
|
"schedule": ["before 8am on Monday"]
|
|
}
|
|
],
|
|
"labels": [
|
|
"dependencies"
|
|
]
|
|
}
|