feat: authenticate Renovate to the private container registry #54

Merged
lyrathorpe merged 2 commits from feat/registry-hostrules into main 2026-07-06 14:46:35 +01:00
Showing only changes of commit fd491cd2e3 - Show all commits
+3 -2
View File
@@ -16,10 +16,11 @@ module.exports = {
// Authenticate to the code.emmathe.dev container registry so Renovate can read and // 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 // 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; // 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. // 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", "matchHost": "code.emmathe.dev",
"hostType": "docker", "hostType": "docker",
"username": "renovate-bot", "username": "lyrathorpe",
"password": process.env.RENOVATE_REGISTRY_TOKEN "password": process.env.RENOVATE_REGISTRY_TOKEN
} }
], ],