-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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 python-init-stack-id
- Loading branch information
Showing
1,114 changed files
with
42,949 additions
and
11,285 deletions.
There are no files selected for viewing
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,13 @@ | ||
# Reference: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# NOTE: dependabot only takes care of updating non-npm deps | ||
# npm dependencies are updated through the "yarn-upgrade" github workflow. | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "pr/auto-approve" | ||
open-pull-requests-limit: 5 |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Approve PRs with "pr/auto-approve". mergify takes care of the actual merge. | ||
|
||
name: auto-approve | ||
on: | ||
pull_request: | ||
types: [ labeled, unlabeled, opened, synchronize, reopened, ready_for_review, review_requested ] | ||
|
||
jobs: | ||
auto-approve: | ||
if: > | ||
contains(github.event.pull_request.labels.*.name, 'pr/auto-approve') && | ||
(github.event.pull_request.user.login == 'aws-cdk-automation' | ||
|| github.event.pull_request.user.login == 'dependabot[bot]' | ||
|| github.event.pull_request.user.login == 'dependabot-preview[bot]') | ||
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
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,34 @@ | ||
# 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' |
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.