Skip to content

Commit e38662f

Browse files
committed
chore: improved dependency update and auto-approve.
1 parent 3c66151 commit e38662f

File tree

4 files changed

+56
-21
lines changed

4 files changed

+56
-21
lines changed

.gitattributes

Lines changed: 18 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/auto-approve.yml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.gitignore

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.js

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
const { AwsCdkConstructLibrary } = require("projen");
22
const project = new AwsCdkConstructLibrary({
3-
authorName: "Niko Virtala",
4-
authorAddress: "niko@cloudgardener.dev",
5-
cdkVersion: "1.125.0",
6-
defaultReleaseBranch: "main",
73
name: "@cloudgardener/cdk-aws-fargate-github-runner",
84
description:
95
"CDK construct library to deploy GitHub Actions self-hosted runner to AWS Fargate.",
106
repositoryUrl:
117
"https://github.com/cloudgardener/cdk-aws-fargate-github-runner.git",
128
license: "MIT",
9+
authorName: "Niko Virtala",
10+
authorAddress: "niko@cloudgardener.dev",
11+
cdkVersion: "1.125.0",
12+
defaultReleaseBranch: "main",
13+
depsUpgradeOptions: {
14+
ignoreProjen: false,
15+
workflowOptions: {
16+
labels: ["auto-approve", "auto-merge"],
17+
secret: "AUTOMATION_TOKEN",
18+
},
19+
},
20+
autoApproveOptions: {
21+
secret: "GITHUB_TOKEN",
22+
allowedUsernames: ["nikovirtala"],
23+
},
1324
npmAccess: "public",
1425
catalog: {
1526
announce: true,

0 commit comments

Comments
 (0)