Files
renovate-config/.gitea/workflows/renovate.yaml
T
lyrathorpe 63013b4a4a
renovate / renovate (push) Successful in 2m59s
feat(renovate.yaml): add GitHub token
2026-04-27 10:23:18 +01:00

22 lines
572 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:43.141.6
steps:
- uses: actions/checkout@v6
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/lyrathorpe/renovate-config/config.js" # replace it with your config.js path
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token
RENOVATE_GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}