Skip to content

Commit

Permalink
Merge branch 'main' into ui-qa-checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 committed May 14, 2024
2 parents 88f72b1 + b786889 commit 9fd3515
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/eventindexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
pull_request:
paths:
- "packages/eventindexer/**"
- "go.mod"
- "go.sum"

jobs:
lint-eventindexer:
Expand Down Expand Up @@ -54,7 +56,7 @@ jobs:

push-eventindexer-docker-image:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }}
name: Build and push docker image
runs-on: [taiko-runner]

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/guardian-prover-health-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
pull_request:
paths:
- "packages/guardian-prover-health-check/**"
- "go.mod"
- "go.sum"

jobs:
lint-guardian-prover-health-check:
Expand Down Expand Up @@ -54,7 +56,7 @@ jobs:

push-guardian-prover-health-check-docker-image:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }}
name: Build and push docker image
runs-on: [taiko-runner]

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
pull_request:
paths:
- "packages/relayer/**"
- "go.mod"
- "go.sum"

jobs:
lint-relayer:
Expand Down Expand Up @@ -54,7 +56,7 @@ jobs:

push-relayer-docker-image:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }}
name: Build and push docker image
runs-on: [taiko-runner]

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/taiko-client--test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
pull_request:
paths:
- "packages/taiko-client/**"
- "go.mod"
- "go.sum"

jobs:
lint:
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,17 @@ taiko-mono/
β”‚ β”œβ”€β”€ <a href="./packages/blobstorage">blob-storage</a>: Blob storage service.
β”‚ β”œβ”€β”€ <a href="./packages/branding">branding</a>: Taiko branding materials.
β”‚ β”œβ”€β”€ <a href="./packages/bridge-ui">bridge-ui</a>: Bridge UI.
β”‚ β”œβ”€β”€ <a href="./packages/docs-site">docs-site</a>: End user documentation site.
β”‚ β”œβ”€β”€ <a href="./packages/eventindexer">eventindexer</a>: Event indexer.
β”‚ β”œβ”€β”€ <a href="./packages/fork-diff">fork-diff</a>: Fork diff page.
β”‚ β”œβ”€β”€ <a href="./packages/guardian-prover-health-check">guardian-prover-health-check</a>: Guardian prover health check service.
β”‚ β”œβ”€β”€ <a href="./packages/guardian-prover-health-check-ui">guardian-prover-health-check-ui</a>: Guardian prover health check UI.
β”‚ β”œβ”€β”€ <a href="./packages/protocol">protocol</a>: Taiko protocol smart contracts.
β”‚ β”œβ”€β”€ <a href="./packages/relayer">relayer</a>: Bridge backend relayer.
β”‚ β”œβ”€β”€ <a href="./packages/supplementary-contracts">supplementary-contracts</a>: Supplementary smart contracts that are not part of the Taiko rollup protocol.
β”‚ β”œβ”€β”€ <a href="./packages/taiko-client">taiko-client</a>: Taiko client implementation in Go.
β”‚ β”œβ”€β”€ <a href="./packages/taikoon">taikoon</a>: Taikoon NFT contracts.
β”‚ └── <a href="./packages/supplementary-contracts">supplementary-contracts</a>: Supplementary smart contracts that are not part of the Taiko rollup protocol.
β”‚ └── <a href="./packages/taikoon-ui">taikoon-ui</a>: Taikoon NFT UI.
...
</pre>

Expand All @@ -56,9 +59,10 @@ If you find a bug or have a feature request, please [open an issue](https://gith

## Contributing

Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to contribute. You can also check out our grants cycle at [grants.taiko.xyz](https://grants.taiko.xyz).
> [!WARNING]
> Please refrain from submitting typo/comment-only pull requests with the expectation of receiving TKO airdrops.
⚠️ Please refrain from submitting typo/comment-only pull requests with the expectation of receiving TKO airdrops.
Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to contribute. You can also check out our grants cycle at [grants.taiko.xyz](https://grants.taiko.xyz).

## Getting support

Expand Down
5 changes: 0 additions & 5 deletions vercel.json

This file was deleted.

0 comments on commit 9fd3515

Please sign in to comment.