ci: add Gitea Actions CI and Renovate coverage

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.
This commit is contained in:
Emma Thorpe
2026-06-02 15:29:59 +00:00
parent 826ef58a9d
commit 659912e0af
3 changed files with 98 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"$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"
}
]
}