Skip to content

Commit

Permalink
chore: configure Renovate to ignore bridge and pkg/sdk dependencies (#…
Browse files Browse the repository at this point in the history
…5013)

Adds a config file for the Renovate bot.
  • Loading branch information
t0yv0 authored Dec 30, 2024
1 parent 90151fa commit 0444522
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["github>pulumi/renovate-config//default.json5"],
packageRules: [
{
// These dependencies are special and are pulled in when the bridge dependency updates:
//
// github.com/pulumi/pulumi-terraform-bridge/v3
//
// This makes sure that the changes are tested through the bridge testing process before rolling out.
matchManagers: ["gomod"],
matchPackageNames: ["github.com/pulumi/pulumi/pkg/v3", "github.com/pulumi/pulumi/sdk/v3"],
enabled: false
},
{
// Currently the bridge dependency is managed by pulumi/upgrade-provider
matchManagers: ["gomod"],
matchPackageNames: ["github.com/pulumi/pulumi-terraform-bridge/v3"],
enabled: false
}
]
}

0 comments on commit 0444522

Please sign in to comment.