From a28f741d856eb89488324f952dac4b7e2e44e3ad Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 17 Apr 2024 17:55:14 +0200 Subject: [PATCH] Initial commit --- .gitea/workflows/renovate.yaml | 21 +++++++++++++++++++++ config.json | 8 ++++++++ 2 files changed, 29 insertions(+) create mode 100644 .gitea/workflows/renovate.yaml create mode 100644 config.json diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml new file mode 100644 index 0000000..8a91b3b --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,21 @@ +name: renovate + +on: + schedule: + - cron: "@daily" + push: + branches: + - main + - master + +jobs: + renovate: + runs-on: ubuntu-latest + container: ghcr.io/renovatebot/renovate:37.20.2 + steps: + - uses: actions/checkout@v4 + - run: renovate + env: + RENOVATE_CONFIG_FILE: "/workspace/renovate-bot/renovate-config/config.js" + # LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} diff --git a/config.json b/config.json new file mode 100644 index 0000000..2777ac1 --- /dev/null +++ b/config.json @@ -0,0 +1,8 @@ +module.exports = { + "endpoint": "https://git.vbrandl.net/api/v1", + "gitAuthor": "Renovate Bot ", + "platform": "gitea", + "onboardingConfigFileName": "renovate.json", + "autodiscover": true, + "optimizeForDisabled": true, +};