Renovate #114
Workflow file for this run
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: string | |
| overrideSchedule: | |
| description: "Override all schedules" | |
| required: false | |
| default: "false" | |
| type: string | |
| schedule: | |
| # Runs twice on Tuesdays to Thursdays. | |
| - 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: | |
| logLevel: ${{ inputs.logLevel || 'info' }} | |
| overrideSchedule: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }} | |
| renovateConfig: .github/renovate.json | |
| secrets: inherit |