Skip to content

Renovate

Renovate #28

Workflow file for this run

name: Renovate
on:
workflow_dispatch:
schedule:
- cron: "15 0 * * *"
push:
branches: ["main"]
paths:
- .github/renovate.json
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
RENOVATE_AUTODISCOVER: true
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: actions/[email protected]
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
- name: Checkout
uses: actions/[email protected]
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: ".github/renovate.json"
token: "${{ steps.app-token.outputs.token }}"