Renovate #8150
This file contains 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: | |
- cron: '0 8-18 * * 1-5' # Every hour, between 08:00 and 18:00, Monday through Friday | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- run: 'echo "{\"repositories\": [\"${GITHUB_REPOSITORY}\"]}" >renovate-self-hosted-config.json' | |
- run: cat renovate-self-hosted-config.json | |
- name: Self-hosted Renovate | |
uses: renovatebot/[email protected] | |
with: | |
configurationFile: renovate-self-hosted-config.json | |
token: ${{ secrets.RENOVATE_ACTION_TOKEN }} |