-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/enforce-valid-bucket-name
- Loading branch information
Showing
545 changed files
with
17,153 additions
and
4,938 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# AWS CDK GitHub Actions | ||
|
||
These workflows and actions are configured in the AWS CDK GitHub repository. | ||
|
||
## Pull Request Triggered | ||
|
||
### Auto Approve | ||
[auto-approve.yml](auto-approve.yml): Approves merging PRs with the | ||
`pr/auto-approve` label. | ||
Owner: Core CDK team | ||
|
||
### PR Linter | ||
[pr-linter.yml](pr-linter.yml): Runs `tools/@aws-cdk-prlint` on each PR to | ||
check for correctness. | ||
Owner: Core CDK team | ||
|
||
### v2-main PR automation | ||
[v2-pull-request.yml](v2-pull-request.yml): Runs `pkglint` on merge forward PRs | ||
and commits the results. | ||
Owner: Core CDK team | ||
|
||
### Label Assigner | ||
[issue-label-assign.yml](issue-label-assign.yml): Github action for automatically adding labels and/or setting assignees when an Issue or PR is opened or edited based on user-defined Area | ||
Owner: CDK support team | ||
|
||
## Issue Triggered | ||
|
||
### Closed Issue Message | ||
[closed-issue-message.yml](closed-issue-message.yml): Adds a reminder message | ||
to issues that are closed. | ||
Owner: CDK support team | ||
|
||
### Label Assigner | ||
[issue-label-assign.yml](issue-label-assign.yml): Github action for automatically adding labels and/or setting assignees when an Issue or PR is opened or edited based on user-defined Area | ||
Owner: CDK support team | ||
|
||
## Scheduled Actions | ||
|
||
### Issue Lifecycle Handling | ||
[close-stale-issues.yml](close-stale-issues.yml): Handles labeling issues and | ||
PRs with `closing-soon`, `response-requested`, etc. | ||
Owner: CDK support team | ||
|
||
### Yarn Upgrader | ||
[yarn-upgrade.yml](yarn-upgrade.yml): Upgrades yarn dependencies and creates a | ||
patch file for downloading. | ||
Owner: Core CDK team |
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
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,17 @@ | ||
# Apply various labels on PRs | ||
|
||
name: pr-labeler | ||
on: | ||
pull_request: | ||
types: [ opened ] | ||
|
||
jobs: | ||
auto-approve: | ||
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'dependabot-preview[bot]' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- run: gh pr edit ${{ github.event.pull_request.number }} --add-label "pr/auto-approve" -R ${{ github.repository }} | ||
env: | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,4 @@ yarn-error.log | |
.nzm-* | ||
|
||
/.versionrc.json | ||
RELEASE_NOTES.md |
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 +1,10 @@ | ||
--install.check-files true # install will verify file tree of packages for consistency | ||
|
||
# Use the npm registry instead of yarns mirror. | ||
# npm treats registry.npmjs.org as a special value that means 'the current | ||
# configured package' in package-lock and npm-shrinkwrap. if we use | ||
# registry.yarnpkg.com in our shrinkwrap then users with a custom registry will | ||
# be forced to registry.yarnpkg.com. | ||
# https://github.com/npm/cli/issues/3783 | ||
registry "https://registry.npmjs.org" | ||
ignore-engines true # the 'engines' key for 'aws-cdk-lib' has specifies node14 as min while v1 will remain at node10 |
Oops, something went wrong.