Renovate #860
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Renovate | |
on: | |
workflow_dispatch: {} | |
schedule: | |
# run every 15th minute between 9am and 5pm (4am and 12pm UTC), M-F | |
- cron: "0/15 14-22 * * 1-5" | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Get Renovate GitHub App Token | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.RENOVATE_THM_APP_ID_PUB }} | |
private-key: ${{ secrets.RENOVATE_THM_PRIVATE_KEY_PUB }} | |
- uses: actions/checkout@v4 | |
- name: Run Renovate | |
uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11 | |
with: | |
# options in this file are defined by | |
# https://docs.renovatebot.com/self-hosted-configuration/ | |
configurationFile: .github/renovate-config.json | |
token: ${{ steps.app-token.outputs.token }} |