659912e0af
CI workflow gates on nixfmt formatting and evaluates all three host toplevels (aarch64 evaluates without emulation; no full builds in CI). renovate.json enables the nix manager and weekly lockFileMaintenance for flake.lock, plus grouped github-actions updates (Renovate matches .gitea/workflows). A self-hosted Renovate workflow runs it on Gitea, since Gitea has no built-in Renovate; it needs a RENOVATE_TOKEN secret.
31 lines
690 B
JSON
31 lines
690 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
":dependencyDashboard",
|
|
":semanticCommits"
|
|
],
|
|
"nix": {
|
|
"enabled": true
|
|
},
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": ["before 6am on monday"]
|
|
},
|
|
"git-submodules": {
|
|
"enabled": false
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Group all flake input bumps from lockFileMaintenance into one PR.",
|
|
"matchManagers": ["nix"],
|
|
"groupName": "flake inputs"
|
|
},
|
|
{
|
|
"description": "Group Gitea Actions workflow updates.",
|
|
"matchManagers": ["github-actions"],
|
|
"groupName": "gitea actions"
|
|
}
|
|
]
|
|
}
|