renovate-config/.gitea/workflows/renovate.yml
Lee 6efa0bbaed
All checks were successful
renovate / renovate (push) Successful in 4m40s
Update .gitea/workflows/renovate.yml
2023-10-15 01:32:03 +00:00

24 lines
721 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- master
jobs:
renovate:
runs-on: ubuntu-20.04
container: ghcr.io/renovatebot/renovate:37.19.2
steps:
- uses: actions/checkout@v4
- run: renovate
env:
#RENOVATE_CONFIG_FILE: "/home/container/rconfig.js"
LOG_LEVEL: "debug"
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
HUB_DOCKER_COM_USER: ${{ secrets.HUB_DOCKER_COM_USER }}
HUB_DOCKER_COM_TOKEN: ${{ secrets.HUB_DOCKER_COM_TOKEN }}