From f212fa07b7feaff10ed711a164a4d3173b2f4882 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 18 Jul 2026 22:05:00 -0700 Subject: [PATCH] feat: add renovate stack (image update automation) --- renovate/renovate.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 renovate/renovate.yaml diff --git a/renovate/renovate.yaml b/renovate/renovate.yaml new file mode 100644 index 0000000..f1258d9 --- /dev/null +++ b/renovate/renovate.yaml @@ -0,0 +1,22 @@ +services: + renovate: + image: renovate/renovate:latest + # Renovate runs as a one-shot job triggered by Woodpecker cron. + # This service definition exists for reference and manual runs only. + # Normal execution path: .woodpecker/renovate.yml cron pipeline. + environment: + RENOVATE_TOKEN: ${RENOVATE_TOKEN} + RENOVATE_PLATFORM: gitea + RENOVATE_ENDPOINT: https://${GITEA_HOST} + RENOVATE_GIT_AUTHOR: "Renovate Bot " + RENOVATE_REPOSITORIES: "homelab/compose-files" + LOG_LEVEL: info + deploy: + replicas: 0 + placement: + constraints: + - node.hostname == docker-2 + restart_policy: + condition: none + +networks: {}