From 8144cef2038f569dd6b37f6999423ce54af7ac16 Mon Sep 17 00:00:00 2001 From: pips Date: Sat, 23 Aug 2025 13:54:41 +0200 Subject: [PATCH] chore(renovate): add renovate dry-run & real steps --- .woodpecker/renovate.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .woodpecker/renovate.yaml diff --git a/.woodpecker/renovate.yaml b/.woodpecker/renovate.yaml new file mode 100644 index 0000000..615b8b0 --- /dev/null +++ b/.woodpecker/renovate.yaml @@ -0,0 +1,37 @@ +when: + event: + - cron + - push + - manual + +depends_on: + - lint + +steps: + renovate-dry: + image: renovate/renovate:41 + pull: true + environment: + RENOVATE_TOKEN: + from_secret: renovate_token + RENOVATE_GITHUB_COM_TOKEN: + from_secret: github_token + RENOVATE_DRY_RUN: full + RENOVATE_CONFIG_FILE: config.js + LOG_LEVEL: debug + when: + - event: push + + renovate: + image: renovate/renovate:41 + pull: true + environment: + RENOVATE_TOKEN: + from_secret: renovate_token + RENOVATE_GITHUB_COM_TOKEN: + from_secret: github_token + RENOVATE_CONFIG_FILE: config.js + when: + - event: cron + cron: renovate + - event: manual