Files
workflows/renovate-config.json
T
enricobuehler 11de357074 ci(renovate): silence github.com rate limit + skip internal workflow ref
Wire an optional read-only GITHUB_COM_TOKEN so Renovate can reach
api.github.com (changelogs + actions/checkout-style updates) without
rate limiting, and disable management of the internal Gitea reusable
workflow `played/workflows` (it's a @main ref, not a github.com action).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-29 01:32:01 +02:00

31 lines
954 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":dependencyDashboard", ":semanticCommits"],
"timezone": "Europe/Berlin",
"rangeStrategy": "bump",
"labels": ["dependencies"],
"packageRules": [
{
"description": "Bump the internal @played/* packages together, promptly.",
"matchPackageNames": ["/^@played//"],
"groupName": "@played packages"
},
{
"description": "Batch third-party non-major updates into one PR to cut noise.",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["!/^@played//"],
"groupName": "non-major dependencies"
},
{
"description": "Internal Gitea reusable workflow (pinned @main) — not a github.com action, don't manage it.",
"matchManagers": ["github-actions"],
"matchPackageNames": ["played/workflows"],
"enabled": false
}
],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 9am on monday"]
}
}