Renovate #217
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: | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: "Override default log level" | |
| required: false | |
| default: info | |
| type: choice | |
| options: | |
| - info | |
| - debug | |
| overrideSchedule: | |
| description: "Override all schedules" | |
| required: false | |
| default: "false" | |
| type: choice | |
| options: | |
| - "false" | |
| - "true" | |
| configMigration: | |
| description: "Toggle PRs for config migration" | |
| required: false | |
| default: "true" | |
| type: choice | |
| options: | |
| - "false" | |
| - "true" | |
| renovateConfig: | |
| description: "Define a custom renovate config file" | |
| required: false | |
| default: ".github/renovate.json" | |
| type: string | |
| schedule: | |
| - cron: '30 4,6 * * 2-4' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| call-workflow: | |
| uses: rancher/renovate-config/.github/workflows/renovate-vault.yml@release | |
| with: | |
| configMigration: ${{ inputs.configMigration || 'true' }} | |
| logLevel: ${{ inputs.logLevel || 'info' }} | |
| overrideSchedule: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }} | |
| renovateConfig: ${{ inputs.renovateConfig || '.github/renovate.json' }} | |
| secrets: | |
| override-token: "${{ secrets.RENOVATE_FORK_GH_TOKEN || '' }}" |