forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
1,493 changed files
with
63,354 additions
and
26,397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
AWS Cloud Development Kit (AWS CDK) | ||
Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
Copyright 2018-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Automated actions for PRs against the v2-main branch | ||
name: v2 | ||
on: | ||
pull_request: | ||
branches: | ||
- v2-main | ||
types: | ||
- labeled | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
- unlabeled | ||
- unlocked | ||
|
||
jobs: | ||
# Run yarn pkglint on merge forward PRs and commit the results | ||
pkglint: | ||
if: contains(github.event.pull_request.labels.*.name, 'pr/forward-merge') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
branch: ${{ github.event.pull_request.head.ref }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: lint | ||
run: |- | ||
yarn install --frozen-lockfile | ||
yarn pkglint | ||
- name: push | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: 'automatic pkglint fixes' | ||
|
||
# Approve automated PRs | ||
# Only approve! mergify takes care of the actual merge. | ||
auto-approve: | ||
if: > | ||
github.event.pull_request.user.login == 'aws-cdk-automation' | ||
&& contains(github.event.pull_request.labels.*.name, 'pr/auto-approve') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hmarr/auto-approve-action@v2.0.0 | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.