2026-04-25 12:28:21 +01:00
|
|
|
module.exports = {
|
2026-04-27 11:55:35 +01:00
|
|
|
"endpoint": "https://code.emmathe.dev/api/v1",
|
2026-04-25 12:28:21 +01:00
|
|
|
"gitAuthor": "Renovate Bot <renovate-bot@iam.emmathe.dev>",
|
|
|
|
|
"platform": "gitea",
|
|
|
|
|
"onboardingConfigFileName": ".renovaterc.json",
|
|
|
|
|
"autodiscover": true,
|
|
|
|
|
"optimizeForDisabled": true,
|
2026-05-07 15:42:00 +01:00
|
|
|
"extends": ["config:best-practices"],
|
2026-05-07 09:58:34 +01:00
|
|
|
"schedule": ["* * * * 1-5"],
|
2026-04-27 11:55:35 +01:00
|
|
|
"timezone": "Europe/London",
|
2026-06-16 14:44:52 +01:00
|
|
|
"minimumReleaseAge": "3 days",
|
2026-04-27 11:55:35 +01:00
|
|
|
"labels": ["dependencies"],
|
|
|
|
|
"reviewers": ["lyrathorpe"],
|
2026-07-06 14:46:35 +01:00
|
|
|
"hostRules": [
|
|
|
|
|
{
|
|
|
|
|
// Authenticate to the code.emmathe.dev container registry so Renovate can read and
|
|
|
|
|
// update digests for private images (e.g. code.emmathe.dev/lyrathorpe/whyisthedlrshut.today
|
|
|
|
|
// and .../docs-site, pinned in the Terraform repo). Token = a Gitea PAT with read:package;
|
|
|
|
|
// supplied via the RENOVATE_REGISTRY_TOKEN environment variable on the bot (a PAT for
|
|
|
|
|
// the "lyrathorpe" account with read:package is sufficient; the registry images are its own).
|
|
|
|
|
"matchHost": "code.emmathe.dev",
|
|
|
|
|
"hostType": "docker",
|
|
|
|
|
"username": "lyrathorpe",
|
|
|
|
|
"password": process.env.RENOVATE_REGISTRY_TOKEN
|
|
|
|
|
}
|
|
|
|
|
],
|
2026-04-27 11:55:35 +01:00
|
|
|
"prHourlyLimit": 10,
|
2026-06-16 14:44:52 +01:00
|
|
|
"prConcurrentLimit": 10,
|
|
|
|
|
"branchConcurrentLimit": 10,
|
2026-04-27 11:55:35 +01:00
|
|
|
"packageRules": [
|
|
|
|
|
{
|
|
|
|
|
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchUpdateTypes": ["major"],
|
|
|
|
|
"automerge": false
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"lockFileMaintenance": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"schedule": ["before 4am on monday"]
|
|
|
|
|
},
|
|
|
|
|
"vulnerabilityAlerts": {
|
2026-06-16 14:44:52 +01:00
|
|
|
"enabled": true,
|
|
|
|
|
"schedule": ["at any time"]
|
2026-04-27 11:55:35 +01:00
|
|
|
}
|
2026-04-25 12:28:21 +01:00
|
|
|
};
|