Files
renovate-config/.gitea/workflows/renovate.yml
Hadley Rich 6c8a10e85f
Some checks are pending
renovate / renovate (push) Has started running
Add GH_TOKEN
2023-11-03 10:25:15 +13:00

24 lines
607 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
issue_comment:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.43.0
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/hads/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
RENOVATE_TOKEN: ${{ secrets.PAT }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}