Files
llvm/.github/renovate.json
Aiden Grossman e341a9f47f [Github] Exclude Renovate from Updating OS Versions in GHA (#166811)
We usually set this explicitly for various reasons. Exclude them from
the renovate config so that they do not get included in the
automatically generated PRs.
2025-11-06 11:08:03 -08:00

20 lines
500 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"includePaths": [".github/**"],
"schedule": "* 0 * * 1",
"minimumReleaseAge": "3 days",
"assignees": ["boomanaiden154"],
"ignorePaths": [".github/workflows/containers/**"],
"groupName": "[Github] Update GHA Dependencies",
"packageRules": [
{
"matchPackageNames": ["windows", "macos"],
"matchManagers": ["github-actions"],
"enabled": false
}
]
}