-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.projenrc.ts
49 lines (47 loc) · 1.12 KB
/
.projenrc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { awscdk } from "projen";
import { NpmAccess } from "projen/lib/javascript";
const project = new awscdk.AwsCdkConstructLibrary({
name: "@cloudgardener/cdk-aws-fargate-github-actions-runner",
description:
"CDK construct library to deploy GitHub Actions self-hosted runner to AWS Fargate.",
repositoryUrl:
"https://github.com/cloudgardener/cdk-aws-fargate-github-actions-runner.git",
license: "MIT",
majorVersion: 1,
author: "Niko Virtala",
authorAddress: "niko@cloudgardener.dev",
cdkVersion: "2.80.0",
dependabot: false,
defaultReleaseBranch: "main",
jsiiVersion: "~5.5.0",
depsUpgradeOptions: {
workflowOptions: {
labels: ["auto-approve", "auto-merge"],
},
},
autoApproveOptions: {
secret: "GITHUB_TOKEN",
allowedUsernames: ["nikovirtala"],
},
githubOptions: {
mergify: true,
},
npmAccess: NpmAccess.PUBLIC,
catalog: {
announce: true,
twitter: "nikovirtala",
},
keywords: [
"aws",
"cdk",
"aws-cdk",
"fargate",
"github",
"github-actions",
"runner",
],
prettier: true,
jest: false,
projenrcTs: true,
});
project.synth();