commit 7418ce3f697a25dec612862e7f3373de6f5d73ec Author: kovagoadi Date: Thu Oct 23 23:25:16 2025 +0200 Initial commit diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml new file mode 100644 index 0000000..ef6946d --- /dev/null +++ b/.gitea/workflows/workflow.yaml @@ -0,0 +1,18 @@ +name: Run Renovate +on: + schedule: + - cron: '0 3 * * *' + workflow_dispatch: +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4.1.1 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v40.1.2 + with: + token: ${{ secrets.RENOVATE_TOKEN }} + configurationFile: renovate-config.js + logLevel: debug + diff --git a/renovate-config.js b/renovate-config.js new file mode 100644 index 0000000..f15709a --- /dev/null +++ b/renovate-config.js @@ -0,0 +1,10 @@ +module.exports = { + endpoint: 'https://gitea.kovagoadi.hu/', + platform: 'gitea', + onboardingConfig: { + extends: ['config:recommended'], + }, + autodiscover: true, + log_level: 'debug' +}; +