Skip to content

Renovate

Renovate #110

Workflow file for this run

name: Renovate
on:
push:
branches: ["main"]
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "14 3 * * 1-5"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run renovatebot
uses: renovatebot/[email protected]
env:
LOG_LEVEL: "debug"
RENOVATE_LOG_LEVEL: "debug"
RENOVATE_REPOSITORIES: "erichesse/mex-common"
with:
configurationFile: renovate.json
token: ${{ secrets.GITHUB_TOKEN }}