Skip to content

Renovate

Renovate #2434

Workflow file for this run

name: Renovate
on:
schedule:
# every 4 hours
- cron: "0 */4 * * *"
workflow_dispatch:
issues:
label:
pull_request:
types:
# run when the little "click here to rebase" box is checked.
- synchronize
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
- name: Create GitHub App Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
id: app-token
with:
app-id: ${{ secrets.PR_BOT_APP_ID }}
private-key: ${{ secrets.PR_BOT_PRIVATE_KEY }}
- name: Renovate
uses: renovatebot/github-action@757597d1bb6993c6406e207997a85f2b20ff39be # v41.0.4
with:
configurationFile: .github/renovate-sh.json
token: ${{ steps.app-token.outputs.token }}
env:
LOG_LEVEL: debug