Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 84 additions & 46 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,64 +1,102 @@
// Check Renovate logs: Go to https://developer.mend.io/ → sign in with GitHub → find your repo → check the job logs to see what Renovate is doing (or why it's skipping updates).
{
"extends": [
"config:best-practices",
"github>aquaproj/aqua-renovate-config#2.9.0"
extends: [
'config:best-practices',
'github>aquaproj/aqua-renovate-config#2.9.0',
],
"enabledManagers": [
"terraform",
"github-actions"
enabledManagers: [
'terraform',
'github-actions',
],
"terraform": {
"ignorePaths": [
"**/context.tf" // Mixin file https://github.com/cloudposse/terraform-null-label/blob/main/exports/context.tf
terraform: {
ignorePaths: [
'**/context.tf',
],
managerFilePatterns: [
'/\\.tf$/',
'/\\.tofu$/',
],
"fileMatch": [
"\\.tf$",
"\\.tofu$"
]
},
"schedule": [
"after 9am on the first day of the month"
schedule: [
'after 9am on the first day of the month',
],
assigneesFromCodeOwners: true,
dependencyDashboardAutoclose: true,
addLabels: [
'{{manager}}',
],
"assigneesFromCodeOwners": true,
"dependencyDashboardAutoclose": true,
"addLabels": ["{{manager}}"],
"packageRules": [
packageRules: [
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "branch",
"groupName": "github-actions-auto-upgrade",
"addLabels": ["auto-upgrade"]
matchManagers: [
'github-actions',
],
matchUpdateTypes: [
'minor',
'patch',
'pin',
'digest',
],
automerge: true,
automergeType: 'branch',
groupName: 'github-actions-auto-upgrade',
addLabels: [
'auto-upgrade',
],
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"groupName": "github-actions-needs-review",
"addLabels": ["needs-review"]
matchManagers: [
'github-actions',
],
matchUpdateTypes: [
'major',
],
groupName: 'github-actions-needs-review',
addLabels: [
'needs-review',
],
},
{
"matchManagers": ["terraform"],
"groupName": "tf",
"addLabels": ["needs-review"]
matchManagers: [
'terraform',
],
groupName: 'tf',
addLabels: [
'needs-review',
],
},
{
"matchFileNames": ["**/*.tofu", "**/*.tf"],
"matchDatasources": ["terraform-provider", "terraform-module"],
"registryUrls": ["https://registry.opentofu.org"],
"groupName": "tf"
matchFileNames: [
'**/*.tofu',
'**/*.tf',
],
matchDatasources: [
'terraform-provider',
'terraform-module',
],
registryUrls: [
'https://registry.opentofu.org',
],
groupName: 'tf',
},
{
"matchFileNames": ["**/*.tofu"],
"matchDepTypes": ["required_version"],
"registryUrls": ["https://registry.opentofu.org"],
"groupName": "tf"
matchFileNames: [
'**/*.tofu',
],
matchDepTypes: [
'required_version',
],
registryUrls: [
'https://registry.opentofu.org',
],
groupName: 'tf',
},
{
"matchFileNames": ["**/*.tf"],
"matchDepTypes": ["required_version"],
"groupName": "tf"
}
]
matchFileNames: [
'**/*.tf',
],
matchDepTypes: [
'required_version',
],
groupName: 'tf',
},
],
}