-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a config for the Renovate bot inspired by https://github.com/pulumi/pulumi-cdk/blob/main/renovate.json5 Renovate is not currently succeeding to send working PRs to this repository (see e.g. #1504) but the hope is that adding this config brings us one step closer.
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: ["github>pulumi/renovate-config//default.json5"], | ||
packageRules: [ | ||
{ | ||
// Update metadata when aws-native is bumped. | ||
matchDatasources: ["npm"], | ||
matchPackageNames: ["@pulumi/aws-native"], | ||
postUpgradeTasks: { | ||
commands: ["make renovate"], | ||
executionMode: "branch", // Only run once. | ||
}, | ||
}, | ||
] | ||
} |