## Summary - Disables the `github-actions` Renovate manager in `renovate.json` - Removes the previous `fileMatch` override that pointed Renovate at Forgejo workflow files - Stops Renovate from scanning workflow YAML files for action version updates, eliminating GitHub API calls and the "GitHub token is required" warning ## Test plan - [ ] Verify `renovate.json` is valid JSON (done locally with `python3 -m json.tool`) - [ ] Confirm the next Renovate run no longer produces the GitHub token warning in its logs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Thomas SharedInbox <sharedinbox@thomas-guettler.de> Reviewed-on: https://codeberg.org/guettli/sharedinbox/pulls/306
17 lines
348 B
JSON
17 lines
348 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"labels": ["dependencies"],
|
|
"github-actions": {
|
|
"enabled": false
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchUpdateTypes": ["minor", "patch", "pin", "digest", "lockFileMaintenance"],
|
|
"addLabels": ["automerge"]
|
|
}
|
|
]
|
|
}
|