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:c0811f2c527bcaa2cad7f02824fdbaa7da4f6f7b42d2db89e36cec8fbb97c914
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 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 }}