renovate-runner/.gitea/workflows/renovate.yaml
Renovate c1eea64a23
Some checks failed
renovate / renovate (push) Failing after 9m8s
chore(deps): pin dependencies
2024-09-04 06:10:35 +00:00

21 lines
640 B
YAML

name: renovate
on:
workflow_dispatch:
schedule:
- cron: "@hourly"
push:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:latest@sha256:278d4926a7dc4677450801b4c1d98c53bfe95ab440ce4044b5f05ca6b1680b5c
steps:
- uses: https://git.kjan.de/actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "config.js" # replace it with your config.js path
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}