eb644ea738
Phase 4 Gitea migration — Renovate CLI needs the endpoint URL to connect to the self-hosted git.farh.net instance. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
27 lines
754 B
YAML
27 lines
754 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * 6' # Saturday 2:00 UTC — aligns with "every weekend" in renovate-config.json
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: runners-privilegedescalation
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run Renovate
|
|
env:
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
RENOVATE_PLATFORM: gitea
|
|
RENOVATE_ENDPOINT: https://git.farh.net
|
|
RENOVATE_AUTODISCOVER: "true"
|
|
LOG_LEVEL: debug
|
|
run: |
|
|
npx renovate \
|
|
--token="${RENOVATE_TOKEN}" \
|
|
--platform=gitea \
|
|
--endpoint=https://git.farh.net \
|
|
--configurationFile=renovate-config.json |