commit a28f741d856eb89488324f952dac4b7e2e44e3ad Author: Valentin Brandl Date: Wed Apr 17 17:55:14 2024 +0200 Initial commit 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, +};