Renovate #810
This file contains hidden or 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: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: "Override default log level" | |
| required: false | |
| default: "info" | |
| type: string | |
| overrideSchedule: | |
| description: "Override all schedules" | |
| required: false | |
| default: "false" | |
| type: string | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Validate Renovate JSON | |
| run: jq type .github/renovate.json | |
| - name: Get token | |
| id: get_token | |
| uses: tibdex/[email protected] | |
| with: | |
| app_id: ${{ secrets.RENOVATE_APP_ID }} | |
| private_key: ${{ secrets.RENOVATE_PRIVATE_KEY }} | |
| - name: Self-hosted Renovate | |
| uses: renovatebot/[email protected] | |
| env: | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| RENOVATE_ONBOARDING: "false" | |
| RENOVATE_USERNAME: "vexdev-renovate[bot]" | |
| RENOVATE_GIT_AUTHOR: "vexdev-renovate <140329261+vexdev-renovate[bot]@users.noreply.github.com>" | |
| RENOVATE_PLATFORM_COMMIT: "true" | |
| RENOVATE_FORCE: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }} | |
| LOG_LEVEL: ${{ inputs.logLevel || 'info' }} | |
| with: | |
| configurationFile: .github/renovate.json | |
| token: '${{ steps.get_token.outputs.token }}' |