Skip to content

Commit

Permalink
chore: improved dependency update and auto-approve.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikovirtala committed Oct 3, 2021
1 parent 3c66151 commit e38662f
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 21 deletions.
35 changes: 18 additions & 17 deletions .gitattributes

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

22 changes: 22 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 .gitignore

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

19 changes: 15 additions & 4 deletions .projenrc.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
const { AwsCdkConstructLibrary } = require("projen");
const project = new AwsCdkConstructLibrary({
authorName: "Niko Virtala",
authorAddress: "[email protected]",
cdkVersion: "1.125.0",
defaultReleaseBranch: "main",
name: "@cloudgardener/cdk-aws-fargate-github-runner",
description:
"CDK construct library to deploy GitHub Actions self-hosted runner to AWS Fargate.",
repositoryUrl:
"https://github.com/cloudgardener/cdk-aws-fargate-github-runner.git",
license: "MIT",
authorName: "Niko Virtala",
authorAddress: "[email protected]",
cdkVersion: "1.125.0",
defaultReleaseBranch: "main",
depsUpgradeOptions: {
ignoreProjen: false,
workflowOptions: {
labels: ["auto-approve", "auto-merge"],
secret: "AUTOMATION_TOKEN",
},
},
autoApproveOptions: {
secret: "GITHUB_TOKEN",
allowedUsernames: ["nikovirtala"],
},
npmAccess: "public",
catalog: {
announce: true,
Expand Down

0 comments on commit e38662f

Please sign in to comment.