Skip to content

Renovate

Renovate #100

Workflow file for this run

---
name: "Renovate"
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *" # Every hour
push:
branches: ["main"]
paths:
- .github/renovate.json
permissions:
packages: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
LOG_LEVEL: "debug"
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_BOT_NAME: "bb-17"
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_PRIVATE_KEY }}"
- name: Checkout
uses: actions/checkout@v4
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate.json
token: "${{ steps.app-token.outputs.token }}"