-
Notifications
You must be signed in to change notification settings - Fork 9
Dev #2118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Dev #2118
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
77acfc3
chore: release step wait for gateful to be ready
pikonha 9a3ccf2
fix: erpc cache alert from 50% to 25% over 1 hour
pikonha e4222eb
feat(dashboard): flag proposals with reviewed calldata
pikonha e1563ae
chore: erpc external consumers config
pikonha 20c9142
fix(dashboard): pick the longest matching calldata review slug
pikonha ced8718
revert: drop erpc cache alert tuning from this branch
pikonha b7875fa
chore(infra): add production eRPC config for external node consumers
pikonha 4672efe
fix(monitoring): scope the 12h repeat interval to the cache alert
pikonha ab1aaca
Merge pull request #2114 from blockful/fix/erpc-cache-alert
pikonha 2e6fe58
Merge remote-tracking branch 'origin/dev' into feat/proposal-calldata…
pikonha eceea31
fix(dashboard): only badge calldata reviews with an unambiguous match
pikonha fbf49c6
fix(dashboard): calldata badge icon color, link affordance, wrapping
pikonha a0d97f4
test(dashboard): deflake e2e suite and add checkly synthetic monitoring
brunod-e 82c60de
refactor(dashboard): icon + tooltip instead of a calldata review label
pikonha 36b3c92
perf(dashboard): start the calldata review fetch with the proposals q…
pikonha 6bd3050
fix(dashboard): keep the address column readable on whitelabel stakeh…
brunod-e 00bb812
chore(dashboard): drop redundant column width comments
brunod-e f041e49
fix(ci): unbreak PR checks and align playwright with checkly runtime
brunod-e acbbe79
fix(ci): pass e2e env through turbo strict mode and widen api hook ti…
brunod-e ae03c98
chore(dashboard): rename the checkly monitor to anticapture-dashboard
brunod-e 14b5955
test(dashboard): widen smoke coverage and give the CI webServer more …
brunod-e fea1fea
fix(ci): point dashboard e2e at shared dev services instead of the PR…
brunod-e 09f53a8
fix(ci): source the e2e gateful token from the Vercel project env
brunod-e 905958b
fix(ci): probe gateful token candidates instead of trusting the first…
brunod-e b76e0d3
fix(ci): log gateful token entry metadata to diagnose the 401s
brunod-e 9c6f3c6
Merge pull request #2116 from blockful/fix/whitelabel-stakeholders-ad…
pikonha 8546082
fix(ci): adopt a coherent gateway plus token pair per Vercel environment
brunod-e d4eacd6
fix(ci): simplify the e2e token handling to a single fail-fast probe
brunod-e 1462bc3
fix(ci): accept gateful deployments newer than the release commit
pikonha 684f1fe
fix(ci): don't wait out gateful deployments that report no commit
pikonha da4013e
fix: calldata review label from figma
pikonha 4a24a70
Merge pull request #2111 from blockful/chore/release-wait-gateful
pikonha 8137294
perf(dashboard): cache the calldata review tree independently of the DAO
pikonha 669294b
Merge pull request #2113 from blockful/feat/proposal-calldata-reviewed
pikonha b74d3e0
chore: version packages
github-actions[bot] 4ec822c
Merge pull request #2117 from blockful/changeset-release/dev
pikonha a21bef2
fix: match ens proposals by numeric
pikonha 8013fab
Merge pull request #2119 from blockful/fix/ens-calldata-badge
pikonha e69a484
Merge pull request #2115 from blockful/test/dashboard-synthetic-tests
pikonha 7e46cb2
fix(ci): treat a gateful with no commit as stale while waiting
pikonha 99f4f90
fix(ci): scope dashboard E2E to trusted PRs and codegen to the PR pre…
pikonha 6601ba2
docs(ci): record the known ceilings behind the E2E and release schema…
pikonha f7943f8
Merge branch 'main' into dev
pikonha 4bf577e
chore: version packages
github-actions[bot] dbd2f4f
Merge pull request #2120 from blockful/changeset-release/dev
pikonha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,48 @@ | ||
| name: Checkly deploy | ||
|
|
||
| # Keeps the Checkly monitors in sync with the repo. `checkly deploy` is the | ||
| # only sanctioned write path for monitor config: edits made in the Checkly UI | ||
| # are overwritten by the next run of this workflow. | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: | ||
| - "apps/dashboard/e2e/**" | ||
| - "apps/dashboard/checkly.config.ts" | ||
| - "apps/dashboard/playwright.config.ts" | ||
| - "apps/dashboard/package.json" | ||
| - ".github/workflows/checkly-deploy.yaml" | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| checkly-deploy: | ||
| name: Deploy Checkly monitors | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| env: | ||
| CHECKLY_API_KEY: ${{ secrets.CHECKLY_API_KEY }} | ||
| CHECKLY_ACCOUNT_ID: ${{ secrets.CHECKLY_ACCOUNT_ID }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 10.10.0 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
| cache: "pnpm" | ||
|
|
||
| - name: Install dependencies | ||
| run: pnpm install --frozen-lockfile | ||
|
|
||
| # Guarded so the workflow is a no-op until the Checkly account secrets | ||
| # are configured on the repo. | ||
| - name: Deploy checks | ||
| if: env.CHECKLY_API_KEY != '' | ||
| working-directory: apps/dashboard | ||
| run: pnpm exec checkly deploy --force |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.