certbot-cron-docker/renovate.json
MrMeeb 9b848e7edb
Delay Renovate from picking up new releases by 7 days (#31) [skip ci]
When Renovate acts too quickly, weirdness can occur, especially when more core packages like Alpine are updated - things haven't had time to propogate if we start updating less than an hour after the release. Waiting 7 days should give plenty of time for other maintainers to update their packages and for things to distribute.

Reviewed-on: #31
2024-06-22 15:37:03 +00:00

29 lines
923 B
JSON

{
"extends": [":automergeMinor", ":automergePr", ":automergeRequireAllStatusChecks", ":dependencyDashboard", ":disableRateLimiting", ":rebaseStalePrs"],
"baseBranches": ["master"],
"major": {
"dependencyDashboardApproval": true
},
"minimumReleaseAge": "7 days",
"customManagers": [
{
"customType": "regex",
"fileMatch": ["Dockerfile"],
"matchStrings": ["ARG S6_OVERLAY_VERSION=[\"](?<currentValue>.*)[\"]"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "just-containers/s6-overlay"
}
],
"packageRules": [
{
"matchDatasources": ["github-releases"],
"matchDepNames": ["just-containers/s6-overlay"],
"extractVersion": "^v(?<version>.*)$",
"versioning": "loose"
},
{
"matchPackagePatterns": ["certbot"],
"groupName": "certbot"
}
]
}