|
6 | 6 | "schedule:weekly",
|
7 | 7 | ":semanticCommitTypeAll(chore)",
|
8 | 8 | ],
|
9 |
| - labels: ["dependencies"], |
| 9 | + labels: [ |
| 10 | + "dependencies" |
| 11 | + ], |
10 | 12 | rangeStrategy: "bump",
|
11 |
| - ignoreDeps: ["eorzeaenv"], |
| 13 | + "pre-commit": { |
| 14 | + enabled: true, |
| 15 | + }, |
12 | 16 | packageRules: [
|
13 | 17 | {
|
14 | 18 | groupName: "Python dependencies",
|
15 | 19 | // https://docs.renovatebot.com/modules/manager/pep621/
|
16 |
| - matchManagers: ["pep621"], |
17 |
| - matchDepTypes: ["project.dependencies"], |
18 |
| - matchUpdateTypes: ["minor", "patch"], |
| 20 | + matchManagers: [ |
| 21 | + "pep621" |
| 22 | + ], |
| 23 | + matchDepTypes: [ |
| 24 | + "project.dependencies" |
| 25 | + ], |
| 26 | + matchUpdateTypes: [ |
| 27 | + "minor", |
| 28 | + "patch" |
| 29 | + ], |
19 | 30 | description: "Weekly update of Python dependencies",
|
20 | 31 | },
|
21 | 32 | {
|
22 | 33 | groupName: "Python dev-dependencies",
|
23 | 34 | // https://docs.renovatebot.com/modules/manager/pep621/
|
24 |
| - matchManagers: ["pep621"], |
25 |
| - matchDepTypes: ["tool.uv.dev-dependencies"], |
26 |
| - matchUpdateTypes: ["minor", "patch"], |
| 35 | + matchManagers: [ |
| 36 | + "pep621" |
| 37 | + ], |
| 38 | + matchDepTypes: [ |
| 39 | + "tool.uv.dev-dependencies" |
| 40 | + ], |
| 41 | + matchUpdateTypes: [ |
| 42 | + "minor", |
| 43 | + "patch" |
| 44 | + ], |
27 | 45 | description: "Weekly update of Python dev-dependencies",
|
28 | 46 | },
|
29 | 47 | {
|
30 | 48 | groupName: "GitHub actions dependencies",
|
31 | 49 | // https://docs.renovatebot.com/modules/manager/github-actions/
|
32 |
| - matchManagers: ["github-actions"], |
| 50 | + matchManagers: [ |
| 51 | + "github-actions" |
| 52 | + ], |
33 | 53 | description: "Weekly update of GitHub actions dependencies",
|
34 | 54 | },
|
35 | 55 | {
|
36 | 56 | groupName: "Docker dependencies",
|
37 | 57 | // https://docs.renovatebot.com/modules/manager/dockerfile/
|
38 |
| - matchManagers: ["dockerfile"], |
| 58 | + matchManagers: [ |
| 59 | + "dockerfile" |
| 60 | + ], |
39 | 61 | description: "Weekly update of Docker dependencies",
|
40 | 62 | },
|
41 | 63 | {
|
42 | 64 | // 更新 Python 版本时,需要同时更新这几个文件
|
43 | 65 | groupName: "Python version",
|
44 |
| - matchPackageNames: ["python"], |
| 66 | + matchPackageNames: [ |
| 67 | + "python" |
| 68 | + ], |
45 | 69 | // https://docs.renovatebot.com/modules/manager/dockerfile/
|
46 | 70 | // https://docs.renovatebot.com/modules/manager/pyenv/
|
47 |
| - matchManagers: ["dockerfile", "pyenv"], |
| 71 | + matchManagers: [ |
| 72 | + "dockerfile", |
| 73 | + "pyenv" |
| 74 | + ], |
48 | 75 | description: "Weekly update of Python version",
|
49 | 76 | },
|
50 | 77 | {
|
51 | 78 | groupName: "pre-commit dependencies",
|
52 | 79 | // https://docs.renovatebot.com/modules/manager/pre-commit/
|
53 |
| - matchManagers: ["pre-commit"], |
| 80 | + matchManagers: [ |
| 81 | + "pre-commit" |
| 82 | + ], |
54 | 83 | description: "Weekly update of pre-commit dependencies",
|
55 | 84 | },
|
56 | 85 | ],
|
|
0 commit comments