Skip to content

Self-Hosted Renovate #565

Self-Hosted Renovate

Self-Hosted Renovate #565

Workflow file for this run

name: Self-Hosted Renovate
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
inputs:
log_level:
description: 'Log level'
required: false
default: INFO
type: choice
options:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
jobs:
renovate:
name: Self-Hosted
runs-on: ubuntu-latest
steps:
# - name: Permissions Monitor
# uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/[email protected]
- id: generate_token
uses: tibdex/github-app-token@v2
with:
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ secrets.APP_ID }}
- uses: renovatebot/[email protected]
env:
LOG_LEVEL: ${{ inputs.log_level || 'INFO' }}
with:
configurationFile: .github/renovate.json
token: ${{ steps.generate_token.outputs.token }}