|
| 1 | +{ |
| 2 | + "extends": [ |
| 3 | + "config:best-practices", |
| 4 | + "github>aquaproj/aqua-renovate-config#2.7.5" |
| 5 | + ], |
| 6 | + "enabledManagers": [ |
| 7 | + "terraform", |
| 8 | + "github-actions" |
| 9 | + ], |
| 10 | + "terraform": { |
| 11 | + "ignorePaths": [ |
| 12 | + "**/context.tf" // Mixin file https://github.com/cloudposse/terraform-null-label/blob/main/exports/context.tf |
| 13 | + ], |
| 14 | + "fileMatch": [ |
| 15 | + "\\.tf$", |
| 16 | + "\\.tofu$" |
| 17 | + ] |
| 18 | + }, |
| 19 | + "schedule": [ |
| 20 | + "after 9am on the first day of the month" |
| 21 | + ], |
| 22 | + "assigneesFromCodeOwners": true, |
| 23 | + "dependencyDashboardAutoclose": true, |
| 24 | + "addLabels": ["{{manager}}"], |
| 25 | + "packageRules": [ |
| 26 | + { |
| 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"] |
| 44 | + }, |
| 45 | + { |
| 46 | + "matchFileNames": ["**/*.tofu", "**/*.tf"], |
| 47 | + "matchDatasources": ["terraform-provider", "terraform-module"], |
| 48 | + "registryUrls": ["https://registry.opentofu.org"], |
| 49 | + "groupName": "tf" |
| 50 | + }, |
| 51 | + { |
| 52 | + "matchFileNames": ["**/*.tofu"], |
| 53 | + "matchDepTypes": ["required_version"], |
| 54 | + "registryUrls": ["https://registry.opentofu.org"], |
| 55 | + "groupName": "tf" |
| 56 | + }, |
| 57 | + { |
| 58 | + "matchFileNames": ["**/*.tf"], |
| 59 | + "matchDepTypes": ["required_version"], |
| 60 | + "registryUrls": ["https://registry.terraform.io"], |
| 61 | + "groupName": "tf" |
| 62 | + } |
| 63 | + ] |
| 64 | +} |
0 commit comments