Files
renovate-config/.gitea/workflows/renovate.yaml

21 lines
605 B
YAML

name: renovate
on:
schedule:
- cron: "@hourly"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:latest@sha256:9f0c1323542e3a6bed73b3908ac9c8dfa04d87d5f238f4fb4bd55bd40a7618e4
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/renovate-bot/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_COM_TOKEN }}