-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit ed756a4 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 28 15:21:03 2024 +0800 chore(deps): bump gorm.io/gorm from 1.25.7 to 1.25.8 (#16517) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: d1onys1us <13951458+d1onys1us@users.noreply.github.com> commit 0a0a219 Author: Korbinian <KorbinianK@users.noreply.github.com> Date: Thu Mar 28 08:07:47 2024 +0100 fix(repo): bridge ui preview deployments (#16540) commit ebb9da3 Author: jeff <113397187+cyberhorsey@users.noreply.github.com> Date: Wed Mar 27 20:48:19 2024 -0700 feat(relayer): pause the bridge when a message has been detected as not sent (#16542) commit 7890829 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 28 01:14:43 2024 +0000 chore(deps): bump github.com/docker/docker from 25.0.3+incompatible to 25.0.5+incompatible (#16490) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 41967e8 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 28 01:14:43 2024 +0000 chore(deps-dev): bump solc from 0.7.3 to 0.8.25 (#16462) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: d1onys1us <13951458+d1onys1us@users.noreply.github.com> commit e8c25bd Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 27 21:15:19 2024 -0400 chore(deps-dev): bump @vitest/coverage-v8 from 1.3.1 to 1.4.0 (#16514) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: d1onys1us <13951458+d1onys1us@users.noreply.github.com> commit 3e3f529 Author: xiaodino <ruby@taiko.xyz> Date: Wed Mar 27 14:53:13 2024 -0700 feat(relayer): add one more prometheus target for rabbitmq queue (#16539) Co-authored-by: Korbinian <KorbinianK@users.noreply.github.com> commit 3beba21 Author: Korbinian <KorbinianK@users.noreply.github.com> Date: Wed Mar 27 09:59:44 2024 +0100 feat(bridge-ui): retry dialog (#16536) commit 0c5aba2 Author: Roger <50648015+RogerLamTd@users.noreply.github.com> Date: Wed Mar 27 01:59:17 2024 -0700 ci(blobstorage): deploy blobs swagger api (#16531) commit bb91cd1 Author: Korbinian <KorbinianK@users.noreply.github.com> Date: Wed Mar 27 07:51:21 2024 +0100 chore(repo): preview builds for internal project (#16502) commit 5c84e16 Author: jeff <113397187+cyberhorsey@users.noreply.github.com> Date: Tue Mar 26 22:18:45 2024 -0700 fix(relayer): handling message received events should compare message dest chain with indexer source chain (#16537) Co-authored-by: Roger <50648015+RogerLamTd@users.noreply.github.com>
- Loading branch information
1 parent
991b166
commit 50363d7
Showing
13 changed files
with
202 additions
and
100 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_BLOBSTORAGE }} | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- main | ||
- release-please-* | ||
paths: | ||
- "packages/blobstorage/**" | ||
|
||
jobs: | ||
Deploy-Preview: | ||
runs-on: [taiko-runner] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install pnpm dependencies | ||
uses: ./.github/actions/install-pnpm-dependencies | ||
|
||
- name: Install Vercel CLI | ||
run: pnpm add --global vercel@latest | ||
|
||
- name: Pull Vercel Environment Information | ||
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Build Project Artifacts | ||
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Deploy Project Artifacts to Vercel | ||
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_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,30 @@ | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_BLOBSTORAGE }} | ||
|
||
on: | ||
push: | ||
tags: | ||
- "blobstorage-*" | ||
|
||
jobs: | ||
Deploy-Production: | ||
runs-on: [taiko-runner] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install pnpm dependencies | ||
uses: ./.github/actions/install-pnpm-dependencies | ||
|
||
- name: Install Vercel CLI | ||
run: pnpm add --global vercel@latest | ||
|
||
- name: Pull Vercel Environment Information | ||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Build Project Artifacts | ||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Deploy Project Artifacts to Vercel | ||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,3 +117,4 @@ __pycache__/ | |
# VSCode | ||
.vscode/launch.json | ||
packages/protocol/config.js | ||
.vercel |
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
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
Oops, something went wrong.