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:d96e302bb38ba381615da0f6fe6b7ba852b74575773f9f4c909a65b6b58baaed
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 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 }}