Files
renovate-config/.gitea/workflows/renovate.yml
Tuan-Dat Tran f82966b6a4 Fix renovate config file path and token configuration
- Changed RENOVATE_CONFIG_FILE to relative path ./config.js
- Changed token from RENOVATE_TOKEN to GITEA_TOKEN
- Removed unnecessary GITHUB_COM_TOKEN

This should resolve the 'Custom config file specified in RENOVATE_CONFIG_FILE must exist' error.
2026-02-27 18:32:11 +01:00

17 lines
376 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:latest
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "./config.js"
LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.GITEA_TOKEN }}