Skip to content

Renovate

Renovate #785

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Set up Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
- name: Create GitHub App Token
uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # 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@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11
with:
configurationFile: .github/renovate-sh.json
token: ${{ steps.app-token.outputs.token }}