f63051c0f5
Eliminates JS migration warning; update RENOVATE_CONFIG_FILE accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
991 B
YAML
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}
|
|
]
|
|
}
|