Skip to content

Commit

Permalink
Merge pull request #89 from cdklabs/dev
Browse files Browse the repository at this point in the history
chore: update deps workflow
  • Loading branch information
wchaws authored Jun 26, 2021
2 parents 08fef54 + 1e9e570 commit 289df72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/upgrade-dependencies.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0


const { AwsCdkConstructLibrary } = require('projen');
const { AwsCdkConstructLibrary, DependenciesUpgradeMechanism } = require('projen');

const project = new AwsCdkConstructLibrary({
author: 'wchaws',
Expand All @@ -14,6 +14,11 @@ const project = new AwsCdkConstructLibrary({
secret: 'GITHUB_TOKEN',
allowedUsernames: ['dependabot[bot]'],
},
depsUpgrade: DependenciesUpgradeMechanism.githubWorkflow({
workflowOptions: {
labels: ['auto-approve', 'auto-merge'],
},
}),

/* AwsCdkConstructLibraryOptions */
// cdkAssert: true, /* Install the @aws-cdk/assert library? */
Expand Down

0 comments on commit 289df72

Please sign in to comment.