Files
tar-valon-ansible/app-configs/rikku/renovate/config.js
T
Trez.One 220314d0fd
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 29s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Successful in 3m24s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (benedikta) (push) Successful in 3m28s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Successful in 4m0s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Successful in 11s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Successful in 3m5s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (benedikta) (push) Successful in 3m11s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Successful in 3m44s
Adding config file for Renovate.
2025-09-28 18:04:30 -04:00

27 lines
709 B
JavaScript

module.exports = {
extends: ["local>trez/renovate-config"],
hostRules: [
{
description: "Docker Hub authentication",
hostType: "docker",
matchHost: "docker.io",
username: process.env.DOCKER_HUB_USER,
password: process.env.DOCKER_HUB_PASS,
},
{
description: "GitHub Container Registry (GHCR)",
hostType: "docker",
matchHost: "ghcr.io",
username: process.env.GHCR_USER,
password: process.env.GHCR_TOKEN,
},
{
description: "Self-hosted Gitea Docker Registry",
hostType: "docker",
matchHost: "git.trez.wtf",
username: process.env.GITEA_BOT_USER,
password: process.env.GITEA_BOT_PASS,
},
],
};