Renovate #71
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 0 * * *' | |
workflow_dispatch: | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/renovatebot/renovate | |
options: --user root #workaround for checkout | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Checking files inside workspace | |
run: ls -R ${{github.workspace}} | |
- name: Run Renovate | |
env: | |
RENOVATE_CONFIG_FILE: ${{ github.workspace }}/config.js | |
# RENOVATE_CONFIG_FILE: ./config.js | |
LOG_LEVEL: debug | |
run: | | |
renovate | |
#${{ github.workspace }}/config.js:/usr/src/app/config.js | |
# env: | |
# LOG_LEVEL: debug | |
# RENOVATE_AUTO_APPROVE: true | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# renovate | |
# docker run --rm \ | |