Files
Website/.gitea/workflows/renovate.yaml
James Collins ce5c97290f
Some checks are pending
renovate / renovate (push) Waiting to run
Update .gitea/workflows/renovate.yaml
2026-02-03 08:41:28 +00:00

24 lines
486 B
YAML

name: renovate
on:
workflow_dispatch:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.440.7
steps:
- uses: actions/checkout@v4
- run: renovate
working-directory: ${{ gitea.workspace }}
env:
RENOVATE_CONFIG_FILE: "renovate-config.json"
LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}