Files
renovate-config/.gitea/workflows/renovate.yml
ryuupendragon f3747de186
Some checks failed
renovate / renovate (push) Has been cancelled
Update for gitea
2026-02-08 21:20:36 +05:30

32 lines
657 B
YAML

name: renovate
on:
workflow_dispatch:
branches:
- main
schedule:
- cron: "03 2 * * *"
push:
branches:
- main
paths-ignore:
- '**/README.md'
pull_request:
types:
- opened
paths-ignore:
- '**/README.md'
jobs:
renovate:
runs-on: trixe-slim
container: ghcr.io/renovatebot/renovate:latest
steps:
- uses: actions/checkout@v6.0.2
- run: renovate
env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}