-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
1,921 additions
and
816 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,21 +1,19 @@ | ||
{ | ||
"name": "Dev Container Definition - AWS JSII", | ||
"name": "Dev Container - aws/jsii", | ||
"build": { | ||
"dockerfile": "superchain/Dockerfile", | ||
"context": ".", | ||
"target": "superchain", | ||
"args": { | ||
"BUILDPLATFORM": "linux/amd64", | ||
"TARGETPLATFORM": "linux/amd64", | ||
"BUILD_TIMESTAMP": "unknown", | ||
"COMMIT_ID": "HEAD", | ||
"REGISTRY": "docker.io/library", | ||
"COMMIT_ID": "head" | ||
} | ||
}, | ||
}, | ||
"containerUser": "root", | ||
"remoteUser": "root", | ||
"containerUser": "superchain", | ||
"remoteUser": "superchain", | ||
"postCreateCommand": "yarn install && yarn build", | ||
"extensions": [ | ||
"[email protected]" | ||
] | ||
"[email protected]", | ||
], | ||
} |
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 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 |
---|---|---|
|
@@ -73,7 +73,7 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Prepare Commit | ||
run: |- | ||
rsync --delete --exclude=.git --recursive ${{ runner.temp }}/site/ ./ | ||
rsync --delete --exclude=.git --exclude=dev --recursive ${{ runner.temp }}/site/ ./ | ||
touch .nojekyll | ||
git add . | ||
git diff --cached --exit-code >/dev/null || ( | ||
|
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 @@ | ||
name: pull-request-lint | ||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
- edited | ||
jobs: | ||
validate: | ||
name: Validate PR Title | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
types: |- | ||
feat | ||
fix | ||
chore | ||
docs | ||
style | ||
refactor | ||
perf | ||
test | ||
build | ||
ci | ||
revert | ||
requireScope: false |
Oops, something went wrong.