Skip to content

Commit

Permalink
chore: add auto-approve
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealAmazonKendra committed Aug 5, 2024
1 parent 8118301 commit d93bc71
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitattributes

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

21 changes: 21 additions & 0 deletions .github/workflows/auto-approve.yml

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

1 change: 1 addition & 0 deletions .github/workflows/upgrade.yml

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

2 changes: 2 additions & 0 deletions .gitignore

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

1 change: 1 addition & 0 deletions .projen/files.json

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

7 changes: 6 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ const project = new typescript.TypeScriptProject({
name: 'cdk-assets',
projenrcTs: true,
release: false,
autoApproveUpgrades: true,
autoApproveOptions: {
allowedUsernames: ['aws-cdk-automation'],
secret: 'GITHUB_TOKEN',
},
repository: 'https://github.com/cdklabs/cdk-assets.git',
keywords: ['aws', 'cdk'],
homepage: 'https://github.com/aws/aws-cdk',
Expand Down Expand Up @@ -71,7 +76,7 @@ const project = new typescript.TypeScriptProject({
include: ['bin/**/*.ts'],
},
srcdir: 'lib',
gitignore: ['**/*.d.ts', '**/*.js'],
gitignore: ['**/*.d.ts', '**/*.js', '**/.DS_Store'],
});

project.addPackageIgnore('*.ts');
Expand Down

0 comments on commit d93bc71

Please sign in to comment.