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
23 changes: 23 additions & 0 deletions renovate-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,29 @@
"dependencyDashboardApproval": false,
"assignees": ["TimDiekmann", "indietyp"]
},
{
"description": "Terraform providers",
"matchManagers": ["terraform"],
"matchDepTypes": ["provider"],
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

matchDepTypes: ["provider"] only targets the deprecated Terraform provider blocks; most repos on Terraform >=0.13 pin providers via required_providers (depType required_provider), so this rule may not apply to the intended dependencies.

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

"additionalBranchPrefix": "tf/",
"commitMessageTopic": "Terraform provider `{{depName}}`",
"dependencyDashboardApproval": false,
"assignees": ["TimDiekmann"]
},
{
"description": "Don't auto-bump terraform required_version (controlled via mise)",
"matchManagers": ["terraform"],
"matchDepTypes": ["required_version"],
"enabled": false
},
{
"description": "TFLint plugins",
"matchManagers": ["tflint-plugin"],
"additionalBranchPrefix": "tflint/",
"commitMessageTopic": "TFLint plugin `{{depName}}`",
"dependencyDashboardApproval": false,
"assignees": ["TimDiekmann"]
},
{
"matchDepTypes": ["devDependencies"],
"dependencyDashboardApproval": false,
Expand Down