aprs.me/renovate.json
Graham McIntire 87450cc1b9
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
2026-03-03 10:48:48 -06:00

40 lines
1.1 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"branchPrefix": "renovate/",
"semanticCommits": "enabled",
"dependencyDashboard": true,
"labels": ["dependencies"],
"schedule": ["before 5am"],
"timezone": "UTC",
"prConcurrentLimit": 10,
"prCreation": "immediate",
"automerge": false,
"rangeStrategy": "bump",
"separateMajorMinor": true,
"separateMinorPatch": false,
"packageRules": [
{
"description": "Elixir dependencies",
"matchManagers": ["mix"],
"matchUpdateTypes": ["major", "minor", "patch"],
"groupName": null,
"commitMessagePrefix": "chore(deps):"
},
{
"description": "Docker dependencies",
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["major", "minor", "patch"],
"groupName": null,
"commitMessagePrefix": "chore(deps):"
},
{
"description": "GitHub Actions",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major", "minor", "patch"],
"groupName": null,
"commitMessagePrefix": "chore(deps):"
}
]
}