Add Gitea Actions workflows, CI config, and docs
Some checks failed
Docker / docker (push) Successful in 6s
Security / security (push) Successful in 6s
Deploy / deploy-local-runner (push) Has been cancelled
CI / ci (push) Successful in 1m42s
Deploy / deploy-ssh (push) Successful in 7s

This commit is contained in:
2026-02-28 20:40:14 +01:00
parent 3b48b39561
commit 8cadb2d216
35 changed files with 3216 additions and 0 deletions

27
renovate.json Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"description": "Renovate config — groups minor/patch, limits PRs, updates Docker base images.",
"schedule": ["before 6am on Monday"],
"prHourlyLimit": 5,
"prConcurrentLimit": 5,
"labels": ["dependencies"],
"packageRules": [
{
"description": "Group all minor and patch updates to reduce PR noise",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "minor-and-patch",
"groupSlug": "minor-patch"
},
{
"description": "Update Docker base images (FROM ...)",
"matchDatasources": ["docker"],
"enabled": true
}
],
"docker": {
"enabled": true
}
}