Renovate #1967
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: | |
| # Run hourly to process dashboard actions (PR schedule controlled by renovate.json) | |
| schedule: | |
| - cron: '0 * * * *' | |
| # Allow manual trigger | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: 'Run in dry-run mode (no PRs created)' | |
| required: false | |
| default: 'false' | |
| type: boolean | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run Renovate | |
| uses: renovatebot/github-action@v46.1.6 | |
| with: | |
| configurationFile: renovate.json | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| env: | |
| LOG_LEVEL: info | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| RENOVATE_DRY_RUN: ${{ inputs.dry_run == true && 'full' || '' }} |