|
3 | 3 | "config:best-practices", |
4 | 4 | "github>aquaproj/aqua-renovate-config#2.7.5" |
5 | 5 | ], |
6 | | - "schedule": [ |
7 | | - "after 9am on the first day of the month" |
8 | | - ], |
9 | | - "assigneesFromCodeOwners": true, |
10 | | - "dependencyDashboardAutoclose": true, |
11 | | - "addLabels": [ |
12 | | - "auto-upgrade" |
13 | | - ], |
14 | 6 | "enabledManagers": [ |
15 | | - "terraform" |
| 7 | + "terraform", |
| 8 | + "github-actions" |
16 | 9 | ], |
17 | 10 | "terraform": { |
18 | 11 | "ignorePaths": [ |
|
23 | 16 | "\\.tofu$" |
24 | 17 | ] |
25 | 18 | }, |
| 19 | + "schedule": [ |
| 20 | + "after 9am on the first day of the month" |
| 21 | + ], |
| 22 | + "assigneesFromCodeOwners": true, |
| 23 | + "dependencyDashboardAutoclose": true, |
| 24 | + "addLabels": ["{{manager}}"], |
26 | 25 | "packageRules": [ |
27 | 26 | { |
28 | | - "matchDepTypes": [ |
29 | | - "optionalDependencies" |
30 | | - ], |
31 | | - // Allow auto merge if it's not a major version update |
32 | | - "matchUpdateTypes": [ |
33 | | - "minor", |
34 | | - "patch", |
35 | | - "pin", |
36 | | - "digest" |
37 | | - ], |
38 | | - "automerge": true |
| 27 | + "matchManagers": ["github-actions"], |
| 28 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 29 | + "automerge": true, |
| 30 | + "automergeType": "branch", |
| 31 | + "groupName": "github-actions-auto-upgrade", |
| 32 | + "addLabels": ["auto-upgrade"] |
| 33 | + }, |
| 34 | + { |
| 35 | + "matchManagers": ["github-actions"], |
| 36 | + "matchUpdateTypes": ["major"], |
| 37 | + "groupName": "github-actions-needs-review", |
| 38 | + "addLabels": ["needs-review"] |
| 39 | + }, |
| 40 | + { |
| 41 | + "matchManagers": ["terraform"], |
| 42 | + "groupName": "tf", |
| 43 | + "addLabels": ["needs-review"] |
39 | 44 | }, |
40 | 45 | { |
41 | 46 | "matchFileNames": ["**/*.tofu", "**/*.tf"], |
42 | 47 | "matchDatasources": ["terraform-provider", "terraform-module"], |
43 | | - "registryUrls": ["https://registry.opentofu.org"] |
| 48 | + "registryUrls": ["https://registry.opentofu.org"], |
| 49 | + "groupName": "tf" |
44 | 50 | }, |
45 | 51 | { |
46 | 52 | "matchFileNames": ["**/*.tofu"], |
47 | 53 | "matchDepTypes": ["required_version"], |
48 | | - "registryUrls": ["https://registry.opentofu.org"] |
| 54 | + "registryUrls": ["https://registry.opentofu.org"], |
| 55 | + "groupName": "tf" |
49 | 56 | }, |
50 | 57 | { |
51 | 58 | "matchFileNames": ["**/*.tf"], |
52 | 59 | "matchDepTypes": ["required_version"], |
53 | | - "registryUrls": ["https://registry.terraform.io"] |
| 60 | + "registryUrls": ["https://registry.terraform.io"], |
| 61 | + "groupName": "tf" |
54 | 62 | } |
55 | 63 | ] |
56 | 64 | } |
0 commit comments