Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit 6e463e7

Browse files
authored
Merge pull request #1 from awslabs/migration
chore: move old cdk contruct to the new project
2 parents 09b17c4 + 1d2eac4 commit 6e463e7

28 files changed

+8329
-11
lines changed

.eslintrc.json

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

.gitattributes

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

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixes #

.github/workflows/auto-approve.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
2+
3+
name: auto-approve
4+
on:
5+
pull_request_target:
6+
types:
7+
- labeled
8+
- opened
9+
- synchronize
10+
- reopened
11+
- ready_for_review
12+
jobs:
13+
approve:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
pull-requests: write
17+
if: contains(github.event.pull_request.labels.*.name, 'auto-approve') &&
18+
(github.event.pull_request.user.login == 'am29d')
19+
steps:
20+
- uses: hmarr/auto-approve-action@v2.1.0
21+
with:
22+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)