This commit is contained in:
2026-03-09 08:54:30 -04:00
commit 1f75b6f396
18 changed files with 866 additions and 0 deletions

34
.github/renovate.json vendored Normal file
View File

@@ -0,0 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-global-schema.json",
// self-hosted
"onboarding": false,
"requireConfig": "ignored",
"platform": "github",
"repositories": ["spotdemo4/zig-template"],
// repository
"extends": ["config:recommended"],
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"schedule": ["* * * * 0"] // sunday
},
"nix": {
"enabled": true
},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"matchManagers": ["nix"],
"groupName": "nix inputs"
},
{
"matchManagers": ["github-actions"],
"groupName": "github actions"
}
]
}