|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": ["config:recommended"], |
| 4 | + "timezone": "UTC", |
| 5 | + "schedule": ["before 4am"], |
| 6 | + "labels": ["renovate"], |
| 7 | + "semanticCommits": "enabled", |
| 8 | + "semanticCommitType": "chore", |
| 9 | + "semanticCommitScope": "deps", |
| 10 | + "prConcurrentLimit": 5, |
| 11 | + "prHourlyLimit": 50, |
| 12 | + "stabilityDays": 7, |
| 13 | + "repositories": ["stackitcloud/rag-template"], |
| 14 | + "hostRules": [ |
| 15 | + { |
| 16 | + "hostType": "docker", |
| 17 | + "matchHost": "ghcr.io" |
| 18 | + }, |
| 19 | + { |
| 20 | + "hostType": "helm", |
| 21 | + "matchHost": "charts.bitnami.com" |
| 22 | + }, |
| 23 | + { |
| 24 | + "hostType": "helm", |
| 25 | + "matchHost": "langfuse.github.io" |
| 26 | + }, |
| 27 | + { |
| 28 | + "hostType": "helm", |
| 29 | + "matchHost": "qdrant.github.io" |
| 30 | + }, |
| 31 | + { |
| 32 | + "hostType": "helm", |
| 33 | + "matchHost": "enapter.github.io" |
| 34 | + }, |
| 35 | + { |
| 36 | + "hostType": "helm", |
| 37 | + "matchHost": "otwld.github.io" |
| 38 | + } |
| 39 | + ], |
| 40 | + |
| 41 | + "packageRules": [ |
| 42 | + { |
| 43 | + "description": "Group all non-major updates together", |
| 44 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 45 | + "groupName": "all non-major dependencies", |
| 46 | + "groupSlug": "all-minor-patch" |
| 47 | + }, |
| 48 | + { |
| 49 | + "description": "Automerge non-major updates", |
| 50 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 51 | + "automerge": true |
| 52 | + }, |
| 53 | + { |
| 54 | + "description": "Require manual review for major updates", |
| 55 | + "matchUpdateTypes": ["major"], |
| 56 | + "labels": ["major-update"], |
| 57 | + "automerge": false |
| 58 | + }, |
| 59 | + { |
| 60 | + "description": "Label Python dependencies", |
| 61 | + "matchManagers": ["poetry", "pip_requirements"], |
| 62 | + "addLabels": ["python"] |
| 63 | + }, |
| 64 | + { |
| 65 | + "description": "Label Node.js dependencies", |
| 66 | + "matchManagers": ["npm"], |
| 67 | + "addLabels": ["nodejs"] |
| 68 | + }, |
| 69 | + { |
| 70 | + "description": "Label Docker images", |
| 71 | + "matchManagers": ["dockerfile", "docker-compose"], |
| 72 | + "addLabels": ["docker"] |
| 73 | + }, |
| 74 | + { |
| 75 | + "description": "Label Helm charts", |
| 76 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 77 | + "addLabels": ["helm"] |
| 78 | + }, |
| 79 | + { |
| 80 | + "description": "Label Kubernetes manifests", |
| 81 | + "matchManagers": ["kubernetes"], |
| 82 | + "addLabels": ["kubernetes"] |
| 83 | + }, |
| 84 | + { |
| 85 | + "description": "Automerge GitHub Actions updates", |
| 86 | + "matchManagers": ["github-actions"], |
| 87 | + "addLabels": ["github-actions"], |
| 88 | + "automerge": true |
| 89 | + }, |
| 90 | + { |
| 91 | + "description": "Ignore malformed platform flags", |
| 92 | + "matchPackageNames": [ |
| 93 | + "--platform=linux/amd64 python", |
| 94 | + "--platform=linux/amd64 node" |
| 95 | + ], |
| 96 | + "enabled": false |
| 97 | + }, |
| 98 | + { |
| 99 | + "description": "Bitnami Helm charts", |
| 100 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 101 | + "matchPackageNames": ["minio", "bitnami/nginx-ingress-controller"], |
| 102 | + "registryUrls": ["https://charts.bitnami.com/bitnami"] |
| 103 | + }, |
| 104 | + { |
| 105 | + "description": "Langfuse Helm chart", |
| 106 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 107 | + "matchPackageNames": ["langfuse"], |
| 108 | + "registryUrls": ["https://langfuse.github.io/langfuse-k8s"] |
| 109 | + }, |
| 110 | + { |
| 111 | + "description": "Qdrant Helm chart", |
| 112 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 113 | + "matchPackageNames": ["qdrant"], |
| 114 | + "registryUrls": ["https://qdrant.github.io/qdrant-helm"] |
| 115 | + }, |
| 116 | + { |
| 117 | + "description": "KeyDB Helm chart", |
| 118 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 119 | + "matchPackageNames": ["keydb"], |
| 120 | + "registryUrls": ["https://enapter.github.io/charts/"] |
| 121 | + }, |
| 122 | + { |
| 123 | + "description": "Ollama Helm chart", |
| 124 | + "matchManagers": ["helm-requirements", "helm-values", "helmv3"], |
| 125 | + "matchPackageNames": ["ollama"], |
| 126 | + "registryUrls": ["https://otwld.github.io/ollama-helm/"] |
| 127 | + } |
| 128 | + ], |
| 129 | + "ignoreDeps": [], |
| 130 | + "ignorePaths": [ |
| 131 | + "**/node_modules/**", |
| 132 | + "**/vendor/**", |
| 133 | + "**/__pycache__/**", |
| 134 | + "**/venv/**", |
| 135 | + "**/.venv/**" |
| 136 | + ] |
| 137 | +} |
0 commit comments