Skip to content

CI: Setup renovate bot #4

CI: Setup renovate bot

CI: Setup renovate bot #4

Workflow file for this run

name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '42 3 * * *'
pull_request:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: docker://ghcr.io/renovatebot/renovate:38.114.0
with:
args: renovate "${{ github.repository }}"
env:
GITHUB_COM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RENOVATE_BASE_DIR: ${{ github.workspace }}/renovate
RENOVATE_GIT_AUTHOR: Renovate Bot <[email protected]>
RENOVATE_OPTIMIZE_FOR_DISABLED: "true"
RENOVATE_REPOSITORY_CACHE: "enabled"
LOG_LEVEL: debug
# vim:ts=2:sw=2:et