Renovate #11
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: | |
| schedule: | |
| - cron: '0 3 * * *' # Täglich um 03:00 Uhr | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'renovate.json' | |
| permissions: | |
| contents: read | |
| env: | |
| GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_TOKEN }} | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Self-hosted Renovate | |
| uses: renovatebot/github-action@v46.1.10 | |
| with: | |
| configurationFile: renovate.json | |
| token: ${{ secrets.RENOVATE_TOKEN }} | |
| env: | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| # Erlaubt Renovate, Pull Requests im Namen des Tokens zu erstellen | |
| LOG_LEVEL: 'info' |