Renovate #7
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: | |
| # Run once a week on Sunday at midnight UTC | |
| - cron: '0 0 * * 0' | |
| # Allow manual triggering | |
| workflow_dispatch: | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Self-hosted Renovate | |
| uses: renovatebot/github-action@v46.1.14 | |
| with: | |
| # Use the configuration file in the root directory | |
| configurationFile: renovate.json | |
| # You need to create a Personal Access Token (PAT) with `repo` scope | |
| # and save it as a repository secret named `RENOVATE_TOKEN` | |
| token: ${{ secrets.RENOVATE_TOKEN }} | |
| env: | |
| # Tell Renovate which repository to run against | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} |