Files
k8s-manifests/renovate/configmap-renovate.yaml
T
chemavx f63051c0f5 chore: migrate renovate config from config.js to renovate.json
Eliminates JS migration warning; update RENOVATE_CONFIG_FILE accordingly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-20 14:01:32 +00:00

27 lines
991 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: renovate-config
namespace: renovate
data:
renovate.json: |
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"platform": "gitea",
"endpoint": "https://git.chemavx.xyz/",
"gitAuthor": "Renovate Bot <renovate@git.chemavx.xyz>",
"repositories": ["chemavx/researchowl", "chemavx/polymarket-bot", "chemavx/n8n"],
"automerge": false,
"assignees": ["chemavx"],
"labels": ["renovate"],
"prCreation": "not-pending",
"timezone": "Europe/Madrid",
"schedule": ["after 9am and before 6pm every weekday"],
"packageRules": [
{"matchUpdateTypes": ["major"], "automerge": false, "labels": ["renovate", "major-update"]},
{"matchUpdateTypes": ["minor"], "automerge": false},
{"matchUpdateTypes": ["patch"], "automerge": true, "automergeType": "pr"},
{"matchPackageNames": ["/^git\\.chemavx\\.xyz//"], "enabled": false}
]
}