-
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 wafv2-ipset
- Loading branch information
Showing
3,548 changed files
with
246,324 additions
and
96,011 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Stackoverflow | ||
url: https://stackoverflow.com/questions/tagged/aws-cdk | ||
about: Please ask and answer questions here. |
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,68 @@ | ||
--- | ||
name: "📊 Tracking Issue" | ||
title: "📊Tracking: [service]" | ||
about: Add a module tracking issue (internal use only) | ||
labels: management/tracking | ||
--- | ||
|
||
Add your +1 👍 to help us prioritize high-level constructs for this service | ||
--- | ||
|
||
### Overview: | ||
<!-- | ||
Summary of the service (leverage the service’s product page for the text) and a link to the relevant AWS Docs. | ||
This should be the same text that we put at the top of the package’s README.md. Also include a link to the | ||
service’s CDK Construct Library API reference page. | ||
--> | ||
|
||
|
||
|
||
|
||
|
||
|
||
[AWS Docs](url) <!-- replace `url` with link to the relevant AWS Docs --> | ||
|
||
### Maturity: CloudFormation Resources Only | ||
<!-- | ||
The valid maturity states are: CloudFormation Resources Only, Experimental, Developer Preview, Stable | ||
--> | ||
|
||
See the [AWS Construct Library Module Lifecycle doc](https://github.com/aws/aws-cdk-rfcs/blob/master/text/0107-construct-library-module-lifecycle.md) for more information about maturity levels. | ||
|
||
|
||
### Implementation: | ||
<!-- | ||
Checklist of use cases, constructs, features (such as grant methods) that will ship in this package | ||
(not required until the issue is added to the public roadmap) | ||
- [ ] | ||
- [ ] | ||
--> | ||
See the [CDK API Reference](url) for more implementation details.<!-- replace `url` with link to the service's CDK API reference --> | ||
|
||
|
||
|
||
|
||
|
||
|
||
### Issue list: | ||
<!-- | ||
e.g. checklist of links to feature requests, bugs, and PRs that are in scope for GA release of this module | ||
(not required until the issues is added to the public roadmap) | ||
- [ ] | ||
- [ ] | ||
--> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<!-- | ||
Labels to add: | ||
- package/[name] (create new labels if they don’t already exist) | ||
- needs-design (if cfn-only) | ||
- management/roadmap (when added to the roadmap) | ||
- in-progress (when added to “working on it” column of the roadmap) | ||
--> | ||
--- | ||
This is a 📊Tracking Issue |
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,10 +1,4 @@ | ||
|
||
|
||
---- | ||
|
||
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | ||
|
||
<!-- | ||
Please read the contribution guidelines and follow the pull-request checklist: | ||
https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Automatically approve PRs made by Dependabot | ||
# | ||
# Written to look at the original author of the PR (instead of the current | ||
# actor) in order to be able to backresolve existing PRs using this action (by | ||
# mass labeling them). Leads to slightly unnecessary spammage of aprovals in a | ||
# PR... | ||
# | ||
# Only does approvals! A different GitHub Action takes care of merging. | ||
name: Auto-approve Dependabot | ||
on: | ||
pull_request: | ||
types: | ||
- labeled | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
- unlabeled | ||
- unlocked | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hmarr/auto-approve-action@7782c7e2bdf62b4d79bdcded8332808fd2f179cd | ||
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'dependabot-preview[bot]' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "Close Stale Issues" | ||
|
||
# Controls when the action will run. | ||
on: | ||
schedule: | ||
- cron: "0 6 * * *" | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
name: Stale issue job | ||
steps: | ||
- uses: aws-actions/stale-issue-cleanup@v3 | ||
with: | ||
# Setting messages to an empty string will cause the automation to skip | ||
# that category | ||
ancient-issue-message: This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. | ||
stale-issue-message: This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. | ||
stale-pr-message: This PR has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. | ||
|
||
# These labels are required | ||
stale-issue-label: closing-soon | ||
exempt-issue-label: no-autoclose | ||
stale-pr-label: closing-soon | ||
exempt-pr-label: no-autoclose | ||
response-requested-label: response-requested | ||
|
||
# Don't set closed-for-staleness label to skip closing very old issues | ||
# regardless of label | ||
closed-for-staleness-label: closed-for-staleness | ||
|
||
# Issue timing | ||
days-before-stale: 7 | ||
days-before-close: 4 | ||
days-before-ancient: 365 | ||
|
||
# If you don't want to mark a issue as being ancient based on a | ||
# threshold of "upvotes", you can set this here. An "upvote" is | ||
# the total number of +1, heart, hooray, and rocket reactions | ||
# on an issue. | ||
minimum-upvotes-to-exempt: 5 | ||
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
# loglevel: DEBUG | ||
# Set dry-run to true to not perform label or close actions. | ||
dry-run: false |
Oops, something went wrong.