Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
chore: update the token of deps upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
zxkane committed Sep 13, 2021
1 parent d9da44b commit 7bb01c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/upgrade.yml

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

8 changes: 7 additions & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { AwsCdkTypeScriptApp, web } = require('projen');
const { AwsCdkTypeScriptApp, DependenciesUpgradeMechanism, web } = require('projen');

const tsExcludeConfig = {
compilerOptions: {
Expand Down Expand Up @@ -178,6 +178,12 @@ const project = new AwsCdkTypeScriptApp({
// sampleCode: true, /* Generate one-time sample in `src/` and `test/` if there are no files there. */
tsconfig: tsExcludeConfig /* Custom TSConfig. */,
// typescriptVersion: '^3.9.5', /* TypeScript version to use. */
depsUpgrade: DependenciesUpgradeMechanism.githubWorkflow({
workflowOptions: {
labels: ['auto-approve', 'auto-merge'],
secret: 'PROJEN_GITHUB_TOKEN',
},
}),
});

project.addTask('deploy-to-default-vpc', {
Expand Down

0 comments on commit 7bb01c0

Please sign in to comment.