Skip to content

Renovate on ''

Renovate on '' #1472

Workflow file for this run

name: Renovate
run-name: ${{ github.workflow }} on '${{ github.event.pull_request.title }}'
on:
schedule:
# every 4 hours
- cron: "0 */4 * * *"
workflow_dispatch:
pull_request:
types:
# run when the little "click here to rebase" box is checked.
- synchronize
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event }}
cancel-in-progress: true
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # 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@76d49712364696a06b60e8647df46b288fff0ddc # v40.2.4
with:
configurationFile: .github/renovate-sh.json
token: ${{ steps.app-token.outputs.token }}