fix: correct Renovate configuration issues

- Remove global-only options (platform, repositories, username) from renovate.json
- Fix invalid schedule syntax: 'every day' -> 'before 5am'
- Update workflow to use 'forgejo' platform instead of 'gitea'
- These options are properly set via environment variables in the workflow
This commit is contained in:
Graham McIntire 2026-03-03 10:48:48 -06:00
parent 7897fe8a1a
commit 87450cc1b9
No known key found for this signature in database
2 changed files with 2 additions and 5 deletions

View file

@ -17,7 +17,7 @@ jobs:
- name: Run Renovate
env:
RENOVATE_PLATFORM: gitea
RENOVATE_PLATFORM: forgejo
RENOVATE_ENDPOINT: ${{ secrets.FORGEJO_ENDPOINT }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_GIT_AUTHOR: Renovate Bot <bot@renovateapp.com>

View file

@ -1,15 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"platform": "gitea",
"username": "renovate[bot]",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"repositories": ["graham/aprs.me"],
"branchPrefix": "renovate/",
"semanticCommits": "enabled",
"dependencyDashboard": true,
"labels": ["dependencies"],
"schedule": ["every day"],
"schedule": ["before 5am"],
"timezone": "UTC",
"prConcurrentLimit": 10,
"prCreation": "immediate",