|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": [ |
4 | | - "config:recommended", |
5 | | - ":dependencyDashboard", |
6 | | - "docker:pinDigests", |
7 | | - "helpers:pinGitHubActionDigests", |
8 | | - "replacements:all", |
9 | | - "customManagers:biomeVersions" |
10 | | - ], |
11 | | - "labels": [ |
12 | | - "dependencies" |
13 | | - ], |
14 | | - "rangeStrategy": "widen", |
15 | | - "automerge": true, |
16 | | - "automergeType": "pr", |
17 | | - "automergeStrategy": "rebase", |
18 | | - "platformAutomerge": true, |
19 | | - "git-submodules": { |
20 | | - "enabled": true |
21 | | - }, |
22 | | - "pre-commit": { |
23 | | - "enabled": true |
24 | | - }, |
25 | | - "pip_requirements": { |
26 | | - "fileMatch": [ |
27 | | - "^requirements-.*\\.txt$" |
28 | | - ] |
29 | | - }, |
30 | | - "pep723": { |
31 | | - "fileMatch": [ |
32 | | - "^scripts/.*\\.py$" |
33 | | - ] |
34 | | - }, |
35 | | - "packageRules": [ |
36 | | - { |
37 | | - "matchDatasources": [ |
38 | | - "git-refs" |
39 | | - ], |
40 | | - "automerge": false, |
41 | | - "schedule": "on the first day of the month" |
42 | | - }, |
43 | | - { |
44 | | - "matchDatasources": [ |
45 | | - "helm" |
46 | | - ], |
47 | | - "automerge": false, |
48 | | - "schedule": "on the first day of the month" |
49 | | - }, |
50 | | - { |
51 | | - "matchFileNames": [ |
52 | | - "**/package.json" |
53 | | - ], |
54 | | - "automerge": false |
55 | | - }, |
56 | | - { |
57 | | - "matchPackageNames": [ |
58 | | - "shellcheck-py/shellcheck-py", |
59 | | - "scop/pre-commit-shfmt" |
60 | | - ], |
61 | | - "versioning": "loose" |
62 | | - }, |
63 | | - { |
64 | | - "matchPackageNames": [ |
65 | | - "Django" |
66 | | - ], |
67 | | - "matchDatasources": [ |
68 | | - "pypi" |
69 | | - ], |
70 | | - "separateMinorPatch": true |
71 | | - }, |
72 | | - { |
73 | | - "matchPackageNames": [ |
74 | | - "python" |
75 | | - ], |
76 | | - "matchDatasources": [ |
77 | | - "docker" |
78 | | - ], |
79 | | - "separateMinorPatch": true, |
80 | | - "minor": { |
81 | | - "dependencyDashboardApproval": true |
82 | | - } |
83 | | - } |
84 | | - ], |
85 | | - "customManagers": [ |
86 | | - { |
87 | | - "customType": "regex", |
88 | | - "fileMatch": [ |
89 | | - "\\.pre-commit-config\\.yaml" |
90 | | - ], |
91 | | - "matchStrings": [ |
92 | | - "(?<depName>[^'\" ]+)==(?<currentValue>[^'\" ,\\s]+)" |
93 | | - ], |
94 | | - "datasourceTemplate": "pypi", |
95 | | - "versioningTemplate": "pep440" |
96 | | - }, |
97 | | - { |
98 | | - "customType": "regex", |
99 | | - "fileMatch": [ |
100 | | - "\\.pre-commit-config\\.yaml" |
101 | | - ], |
102 | | - "matchStrings": [ |
103 | | - "(?<depName>[^'\" ]+)@(?<currentValue>[^'\" ,\\s]+)" |
104 | | - ], |
105 | | - "datasourceTemplate": "npm", |
106 | | - "versioningTemplate": "npm" |
107 | | - }, |
108 | | - { |
109 | | - "customType": "regex", |
110 | | - "fileMatch": [ |
111 | | - "^.*Dockerfile$" |
112 | | - ], |
113 | | - "matchStrings": [ |
114 | | - "ENV WEBLATE_VERSION=(?<currentValue>.*?)\\n" |
115 | | - ], |
116 | | - "depNameTemplate": "Weblate", |
117 | | - "datasourceTemplate": "pypi", |
118 | | - "versioningTemplate": "pep440" |
119 | | - }, |
120 | | - { |
121 | | - "customType": "regex", |
122 | | - "fileMatch": [ |
123 | | - "^.*Dockerfile$" |
124 | | - ], |
125 | | - "matchStrings": [ |
126 | | - "ENV UV_VERSION=(?<currentValue>.*?)\\n" |
127 | | - ], |
128 | | - "depNameTemplate": "uv", |
129 | | - "datasourceTemplate": "pypi", |
130 | | - "versioningTemplate": "pep440" |
131 | | - }, |
132 | | - { |
133 | | - "customType": "regex", |
134 | | - "fileMatch": [ |
135 | | - "(^|/)Chart\\.yaml$" |
136 | | - ], |
137 | | - "matchStrings": [ |
138 | | - "renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+appVersion: (?<currentValue>.*)\\s" |
139 | | - ] |
140 | | - }, |
141 | | - { |
142 | | - "customType": "regex", |
143 | | - "fileMatch": [ |
144 | | - "^\\.github/workflows/[^/]+\\.ya?ml$" |
145 | | - ], |
146 | | - "matchStrings": [ |
147 | | - "renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+version: (?<currentValue>.*)\\s" |
148 | | - ] |
149 | | - }, |
150 | | - { |
151 | | - "customType": "regex", |
152 | | - "fileMatch": [ |
153 | | - "^Dockerfile$" |
154 | | - ], |
155 | | - "matchStrings": [ |
156 | | - "#\\s*renovate:\\s*?(repo=(?<repo>.*?))?\\s*?(release=(?<release>.*?))?\\s*depName=(?<depName>.*?)?\\sENV .*?_VERSION=\"(?<currentValue>.*)\"" |
157 | | - ], |
158 | | - "registryUrlTemplate": "{{#if repo }}{{repo}}{{else}}https://deb.debian.org/debian{{/if}}?{{#if release }}release={{release}}{{else}}suite=stable{{/if}}&components=main&binaryArch=amd64", |
159 | | - "datasourceTemplate": "deb" |
160 | | - } |
| 4 | + "github>WeblateOrg/meta:renovate" |
161 | 5 | ] |
162 | 6 | } |
0 commit comments