diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml new file mode 100644 index 0000000..a89f3ed --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,22 @@ +name: Renovate +on: + schedule: + - cron: '15 * * * *' + push: + branches: + - main + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Run Renovate + run: | + docker run --rm \ + -e RENOVATE_TOKEN=${{ secrets.BOT_TOKEN }} \ + -e RENOVATE_PLATFORM=gitea \ + -e RENOVATE_ENDPOINT=https://git.yannick-weigert.de \ + -e RENOVATE_REPOSITORIES=liquid-development/game-tracker \ + ghcr.io/renovatebot/renovate \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..71b8150 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "onboarding": false, + "requireConfig": "optional" +} \ No newline at end of file