Skip to content

renovate

renovate #5

Workflow file for this run

---
name: renovate
on:
schedule:
- cron: "41 7 * * *"
workflow_dispatch:
inputs:
log_level:
type: choice
description: Log level to run renovate in
required: true
default: INFO
options:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
jobs:
renovate:
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
runs-on: ubuntu-latest
container:
image: ghcr.io/renovatebot/renovate:37-slim
steps:
- name: Run renovate
run: renovate $GITHUB_REPOSITORY
env: # For illustration purposes, please use secrets.
RENOVATE_PLATFORM: github
RENOVATE_TOKEN: ${{secrets.GITHUB_TOKEN}}
RENOVATE_AUTODISCOVER: "false"
LOG_LEVEL: ${{ github.event.inputs.log_level }}
RENOVATE_DRY_RUN: "full"