-
Notifications
You must be signed in to change notification settings - Fork 46k
dx(platform): bake synthetic preview seed fixture as rolling release #13575
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,278 @@ | ||
| name: AutoGPT Platform - Preview Seed Fixture Bake | ||
|
|
||
| # Bakes a fully SYNTHETIC preview-database seed fixture and publishes it as a | ||
| # rolling GitHub release asset (tag: preview-seed-fixture). Preview environments | ||
| # restore this fixture BEFORE a PR's own migrations run, so schema changes are | ||
| # exercised against populated tables (catching NOT-NULL / unique / backfill | ||
| # failures that an empty DB would silently pass). | ||
| # | ||
| # SECURITY INVARIANT: this workflow holds NO cloud credentials and has NO read | ||
| # path to any real database. It runs entirely against a throwaway Postgres | ||
| # service container. The fixture contains ONLY Faker-generated synthetic rows | ||
| # plus the already-public marketplace agent exports checked into | ||
| # autogpt_platform/backend/agents/. No production data is ever touched. | ||
| # | ||
| # RESTORE PROCEDURE (consumers): apply restore-preamble.sql to the target | ||
| # database FIRST — it creates the platform schema and installs the vector + | ||
| # pg_trgm extensions into it, which pg_dump --schema=platform omits because | ||
| # CREATE EXTENSION is not emitted for extensions living inside the dumped | ||
| # schema. Then run: | ||
| # gunzip -c fixture.dump.gz | pg_restore -d <db> --no-owner | ||
| # Do NOT pass --exit-on-error: the dump's own CREATE SCHEMA platform collides | ||
| # benignly with the preamble's. | ||
|
|
||
| on: | ||
| push: | ||
| branches: [dev] | ||
| paths: | ||
| - "autogpt_platform/backend/migrations/**" | ||
| - "autogpt_platform/backend/test/**" | ||
| - ".github/workflows/platform-preview-seed-fixture.yml" | ||
| schedule: | ||
| # Weekly backstop (Mondays 06:00 UTC) so the fixture never goes stale even | ||
| # if no migration/test change lands for a while. | ||
| - cron: "0 6 * * 1" | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (performance/ci-efficiency) Trigger path Suggestion: Narrow the path filter to the specific seeder files (test_data_creator.py, e2e_test_data.py, test_data_updater.py) plus migrations, relying on the weekly cron as the staleness backstop. |
||
| workflow_dispatch: | ||
|
|
||
| # Coalesce overlapping bakes: a newer commit cancels an in-flight bake since | ||
|
ntindle marked this conversation as resolved.
|
||
| # they would publish the same rolling asset anyway. | ||
| concurrency: | ||
| group: preview-seed-fixture-bake | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (architect/concurrency / atomicity) cancel-in-progress can interrupt the non-atomic publish sequence (release edit -> asset upload --clobber -> tag retarget), leaving the rolling release with a new manifest but stale fixture.dump.gz, or updated assets but un-retargeted tag. Consumers restore the latest asset, so a torn update is a correctness hazard. Suggestion: Set cancel-in-progress: false, or scope cancellation so an in-flight publish step always completes. |
||
| cancel-in-progress: true | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (security/least-privilege) contents: write is granted at the workflow level, so all steps (including repo-defined seeders and the piped Poetry installer) run with the write token available, even though only the final publish step needs it. Suggestion: Move the permissions block to the bake job or split publishing into a separate minimally-permissioned job to reduce blast radius. |
||
| permissions: | ||
| contents: write # required to create/update the rolling release + its assets | ||
|
|
||
| defaults: | ||
| run: | ||
| shell: bash | ||
| working-directory: autogpt_platform/backend | ||
|
|
||
| jobs: | ||
| bake: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 45 | ||
|
|
||
| services: | ||
| # Throwaway Postgres. pgvector/pgvector:pg15 matches the platform's real | ||
| # Postgres major version (supabase/postgres:15.8.x used in dev/prod) and | ||
| # ships the `vector` extension (required by the docs-embedding migrations) | ||
| # plus the `pg_trgm` contrib module (creator-search index migration). No | ||
| # credentials of any kind — a disposable localhost container. | ||
| postgres: | ||
| image: pgvector/pgvector:pg15 | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| env: | ||
| POSTGRES_USER: postgres | ||
| POSTGRES_PASSWORD: postgres | ||
| POSTGRES_DB: postgres | ||
| ports: | ||
| - 5432:5432 | ||
| options: >- | ||
| --health-cmd "pg_isready -U postgres" | ||
| --health-interval 10s | ||
| --health-timeout 5s | ||
| --health-retries 10 | ||
|
|
||
| env: | ||
| CI: "true" | ||
| PLAIN_OUTPUT: "true" | ||
| # Prisma connection to the throwaway container, using the platform schema | ||
| # exactly like the backend tests / local dev (.env.default). | ||
| DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/postgres?schema=platform" | ||
|
ntindle marked this conversation as resolved.
|
||
| DIRECT_URL: "postgresql://postgres:postgres@localhost:5432/postgres?schema=platform" | ||
|
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (architect/comment-durability) Comment uses change-relative language ('e2e_test_data.py no longer talks to Supabase'), which documents a past migration rather than a standing fact and has already misled reviewers. Suggestion: Rewrite to the standing invariant: 'e2e_test_data.py does not talk to Supabase (users are created through Better Auth via raw Prisma inserts), but backend settings still read these values at import time, so they only need to exist.' |
||
| # Dummy, UNREACHABLE Supabase config. e2e_test_data.py no longer talks to | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
|
||
| # Supabase at all (users are created through Better Auth via raw Prisma | ||
| # inserts), but backend settings still read these values at import time, | ||
| # so they only need to exist. Nothing in this job ever connects to them. | ||
| SUPABASE_URL: "http://localhost:54321" | ||
| SUPABASE_SERVICE_ROLE_KEY: "synthetic-bake-no-real-key" # pragma: allowlist secret | ||
| # Non-production test key (identical to the one used in backend CI) so | ||
| # backend module imports that read settings.secrets don't error. | ||
|
ntindle marked this conversation as resolved.
|
||
| ENCRYPTION_KEY: "dvziYgz0KSK8FENhju0ZYi8-fRTfAdlz6YLhdB_jhNw=" # pragma: allowlist secret # DO NOT USE IN PRODUCTION | ||
|
ntindle marked this conversation as resolved.
|
||
|
|
||
| steps: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟡 medium (security/supply-chain / unpinned actions) Third-party actions (actions/checkout@v6, actions/setup-python@v5, actions/cache@v5) are pinned to mutable major-version tags rather than full commit SHAs, in a workflow that holds contents:write and publishes release assets restored into downstream preview databases. A moved/hijacked tag would execute attacker code with a write token. Suggestion: Pin each action to a full commit SHA (e.g. actions/checkout@ # v6) per GitHub's hardening guidance for privileged workflows. |
||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
|
cursor[bot] marked this conversation as resolved.
coderabbitai[bot] marked this conversation as resolved.
ntindle marked this conversation as resolved.
|
||
| with: | ||
| # Always bake dev: schedule/dispatch runs execute from the DEFAULT | ||
| # branch (master), which would otherwise silently bake master's | ||
| # schema into a fixture that previews (built from dev) restore. | ||
| ref: dev | ||
| # Only the release-publish step needs a token, via env — don't | ||
| # persist credentials into the workspace git config. | ||
| persist-credentials: false | ||
|
|
||
| - name: Set up Python 3.12 | ||
| uses: actions/setup-python@v5 | ||
|
ntindle marked this conversation as resolved.
|
||
| with: | ||
| python-version: "3.12" | ||
|
|
||
| - name: Set up Python dependency cache | ||
| uses: actions/cache@v5 | ||
|
ntindle marked this conversation as resolved.
|
||
| with: | ||
| path: ~/.cache/pypoetry | ||
| key: poetry-${{ runner.os }}-py3.12-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} | ||
|
ntindle marked this conversation as resolved.
|
||
|
|
||
| - name: Install Poetry | ||
|
ntindle marked this conversation as resolved.
|
||
| run: | | ||
| HEAD_POETRY_VERSION=$(python ../../.github/workflows/scripts/get_package_version_from_lockfile.py poetry) | ||
| echo "Using Poetry version ${HEAD_POETRY_VERSION}" | ||
|
ntindle marked this conversation as resolved.
|
||
| curl -sSL https://install.python-poetry.org | POETRY_VERSION=$HEAD_POETRY_VERSION python3 - | ||
|
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (security/supply-chain / remote code execution) Poetry is installed via Suggestion: Install Poetry from a pinned installer/pipx or verify a checksum before executing; avoid piping unverified network content to python3. |
||
|
|
||
| - name: Install Python dependencies | ||
| run: poetry install | ||
|
ntindle marked this conversation as resolved.
|
||
|
|
||
| - name: Generate Prisma Client | ||
| run: poetry run prisma generate | ||
|
|
||
| - name: Apply database migrations | ||
| run: poetry run prisma migrate deploy | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (performance/ci-caching) Cache stores only Suggestion: Also cache the |
||
|
|
||
| # --- Seeders -------------------------------------------------------- | ||
| # Order mirrors each script's documented invocation. test_data_creator is | ||
| # REQUIRED (a failure fails the bake). The other three are best-effort: | ||
| # a failure emits a LOUD ::warning:: but does not abort the bake. | ||
| # | ||
| # The two Python seeders below are additionally capped with GNU timeout: | ||
| # this job runs NO RabbitMQ/Redis service containers, and the backend's | ||
| # conn_retry would otherwise spin ~48 min acquiring them — blowing the | ||
| # job-level timeout before dump/publish. `|| { ...; exit 0; }` catches | ||
| # nonzero exits, not hangs; timeout converts a hang into exit 124. | ||
|
|
||
| - name: "Seed: test_data_creator (REQUIRED)" | ||
| run: poetry run python test/test_data_creator.py | ||
|
ntindle marked this conversation as resolved.
|
||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟡 medium (architect/robustness / silent degradation) load-store-agents is best-effort (::warning:: + exit 0) even though, unlike the two Python seeders, it has no queue/cache dependency. If it fails, the release still publishes with only user rows, passing the USER_COUNT>=1 gate — producing a fixture missing store/agent data, which defeats the PR's goal of exercising migrations against populated tables. Suggestion: Make load-store-agents required, or gate publish on row-count sanity checks for the tables each best-effort seeder populates (not just platform.User). |
||
| - name: "Seed: load-store-agents (public marketplace exports)" | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
|
||
| run: | | ||
| poetry run load-store-agents || { | ||
| echo "::warning title=seed-soft-failure::load-store-agents seeder failed; continuing without it." | ||
| exit 0 | ||
| } | ||
|
|
||
| - name: "Seed: e2e_test_data (best-effort)" | ||
| run: | | ||
| timeout 300 poetry run python test/e2e_test_data.py || { | ||
|
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟡 medium (testing/silent-failure-masking) The Suggestion: Capture the exit code and only tolerate the timeout case: |
||
| echo "::warning title=seed-soft-failure::e2e_test_data seeding skipped/timed out (no queue/cache services in this job); continuing without it." | ||
| exit 0 | ||
| } | ||
|
|
||
| - name: "Seed: test_data_updater (mutates existing rows)" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (quality/duplication) The soft-failure wrapper Suggestion: If a 4th best-effort seeder is added, factor the invocation into a matrix step keyed on {name, cmd, required} or a small bash helper; acceptable to leave as-is for the current three. |
||
| run: | | ||
| timeout 300 poetry run python test/test_data_updater.py || { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟡 medium (testing/silent-failure-masking) Same blanket Suggestion: Distinguish exit code 124 (timeout) from other nonzero exits so real seeder bugs surface instead of being reported as tolerated timeouts. |
||
| echo "::warning title=seed-soft-failure::test_data_updater seeding skipped/timed out (no queue/cache services in this job); continuing without it." | ||
|
ntindle marked this conversation as resolved.
coderabbitai[bot] marked this conversation as resolved.
|
||
| exit 0 | ||
| } | ||
|
|
||
| # --- Dump + manifest ------------------------------------------------ | ||
| # pg_dump / psql run INSIDE the Postgres service container via docker exec | ||
| # so the client version always matches the server exactly (the runner's | ||
| # bundled client can lag the server major and refuse the dump). This is | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (quality/magic-value)
Suggestion: Optionally hoist into a job-level env var (e.g. SEED_TIMEOUT: 300) and reference it in both steps. |
||
| # the same pattern platform-fullstack-ci.yml uses. | ||
|
|
||
| - name: Resolve Postgres service container | ||
| run: | | ||
|
ntindle marked this conversation as resolved.
|
||
| set -euo pipefail | ||
| PG_CID=$(docker ps --filter "ancestor=pgvector/pgvector:pg15" --format '{{.ID}}' | head -n1) | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
|
||
| if [ -z "${PG_CID}" ]; then | ||
| echo "::error title=no-pg-container::Could not locate the Postgres service container." | ||
| docker ps | ||
| exit 1 | ||
| fi | ||
| echo "PG_CID=${PG_CID}" >> "${GITHUB_ENV}" | ||
| docker exec "${PG_CID}" pg_dump --version | ||
|
|
||
| - name: Dump platform schema fixture (custom format, gzipped) | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (discussion/deferred-concern) Reviewer (High) noted the workflow publishes fixture.dump.gz without ever restoring it, so a corrupt/truncated archive passes all checks and only fails in every preview. Author acknowledged and deferred restore validation to the follow-up restore-side PR. Suggestion: Ensure the follow-up infra PR adds a round-trip restore validation, or track it as an explicit follow-up issue so the deferral is not lost. |
||
| run: | | ||
| set -euo pipefail | ||
| # Loud sanity check: the required seeder must have populated users. | ||
| USER_COUNT=$(docker exec "${PG_CID}" psql -U postgres -d postgres -tAc "SELECT count(*) FROM platform.\"User\";" | tr -d '[:space:]') | ||
| echo "Seeded platform.\"User\" rows: ${USER_COUNT}" | ||
| if [ "${USER_COUNT:-0}" -lt 1 ]; then | ||
|
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟡 medium (testing/weak-fixture-verification) Fixture completeness is gated only by Suggestion: Add row-count assertions for tables the best-effort seeders populate (e.g. AgentGraph, AgentGraphExecution, store listings) and fail or emit a distinct error when they are unexpectedly empty. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (discussion/declined-advisory) Reviewer noted the only completeness guard (platform.User >= 1) is tautological and best-effort seeders (load-store-agents, e2e_test_data) can soft-fail, publishing a fixture missing store/agent rows while still reporting success. Author declined as advisory. Suggestion: Consider asserting minimum row counts for other critical tables or recording per-seeder success in manifest.json so a degraded fixture is detectable by the restore side. |
||
| echo "::error title=empty-fixture::Seeded fixture is empty (platform.User has 0 rows); refusing to publish." | ||
| exit 1 | ||
|
ntindle marked this conversation as resolved.
|
||
| fi | ||
| # Custom-format dump of the platform schema ONLY (schema + data, | ||
| # including platform._prisma_migrations so the restore side can run | ||
| # only the PR's delta migrations). -Z0 disables pg_dump's internal | ||
| # compression so the outer gzip is the single compressor; restore is | ||
| # therefore `gunzip -c fixture.dump.gz | pg_restore ...`. | ||
| docker exec "${PG_CID}" pg_dump -U postgres -d postgres \ | ||
| --format=custom -Z0 --schema=platform \ | ||
| | gzip -9 > "${GITHUB_WORKSPACE}/fixture.dump.gz" | ||
|
ntindle marked this conversation as resolved.
|
||
| ls -lh "${GITHUB_WORKSPACE}/fixture.dump.gz" | ||
|
|
||
| - name: Write restore-preamble.sql | ||
| run: | | ||
| set -euo pipefail | ||
| # pg_dump --schema=platform does NOT emit CREATE EXTENSION for | ||
| # extensions installed INTO the dumped schema (the vector extension | ||
| # lives in platform since 20260605120000_fix_vector_extension_search_path, | ||
| # and pg_trgm lands there too), so restoring into a fresh database | ||
| # fails with 'type "platform.vector" does not exist'. Consumers run | ||
| # this preamble BEFORE pg_restore, and must NOT use --exit-on-error | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (performance/ci-efficiency) Dump uses Suggestion: Use default |
||
| # (the dump's own CREATE SCHEMA collides benignly with the | ||
| # preamble's). | ||
| cat > "${GITHUB_WORKSPACE}/restore-preamble.sql" <<'SQL' | ||
| CREATE SCHEMA IF NOT EXISTS platform; | ||
| CREATE EXTENSION IF NOT EXISTS vector SCHEMA platform; | ||
| CREATE EXTENSION IF NOT EXISTS pg_trgm SCHEMA platform; | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| SQL | ||
| cat "${GITHUB_WORKSPACE}/restore-preamble.sql" | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| - name: Write manifest.json | ||
| run: | | ||
| set -euo pipefail | ||
| # baked_at comes from the checked-out commit (NOT wall-clock), so the | ||
| # manifest is reproducible for a given dev SHA. | ||
| BAKED_AT="$(git log -1 --format=%cI)" | ||
| # NOT GITHUB_SHA: on schedule/dispatch runs that is the default | ||
| # branch's commit; the checkout above is pinned to dev. | ||
| DEV_SHA="$(git rev-parse HEAD)" | ||
| MIGRATION_HEAD="$(docker exec "${PG_CID}" psql -U postgres -d postgres -tAc \ | ||
| "SELECT migration_name FROM platform._prisma_migrations WHERE finished_at IS NOT NULL ORDER BY finished_at DESC LIMIT 1;" \ | ||
|
ntindle marked this conversation as resolved.
|
||
| | tr -d '[:space:]')" | ||
| echo "baked_at=${BAKED_AT} dev_sha=${DEV_SHA} migration_head=${MIGRATION_HEAD}" | ||
| if [ -z "${MIGRATION_HEAD}" ]; then | ||
| echo "::error title=no-migration-head::Could not read a migration head from platform._prisma_migrations." | ||
| exit 1 | ||
| fi | ||
| jq -n \ | ||
|
ntindle marked this conversation as resolved.
|
||
| --arg baked_at "${BAKED_AT}" \ | ||
| --arg dev_sha "${DEV_SHA}" \ | ||
| --arg migration_head "${MIGRATION_HEAD}" \ | ||
| --arg restore_preamble "Apply restore-preamble.sql to the target database BEFORE pg_restore: it creates the platform schema and installs the vector + pg_trgm extensions into it (pg_dump --schema=platform omits CREATE EXTENSION for extensions inside the dumped schema). Do NOT pass --exit-on-error to pg_restore — the dump's own CREATE SCHEMA collides benignly with the preamble's." \ | ||
| '{baked_at: $baked_at, dev_sha: $dev_sha, migration_head: $migration_head, restore_preamble: $restore_preamble}' \ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (product/consumer-experience) manifest.json records only baked_at/dev_sha/migration_head. Three of four seeders are best-effort (lines 155, 162): on a soft-failure the workflow still overwrites the rolling release asset, so a preview can restore a fixture missing e2e/updater data with no signal that it is degraded — partially undermining the feature's goal of exercising migrations against realistic rows. There is also no fixture format_version for the restore side to detect breaking format changes. Suggestion: Add per-seeder success flags (e.g. seeders: {e2e_test_data: true, test_data_updater: false}) and a format_version field to manifest.json so consumers can detect degraded or incompatible fixtures before restoring. |
||
| > "${GITHUB_WORKSPACE}/manifest.json" | ||
| cat "${GITHUB_WORKSPACE}/manifest.json" | ||
|
|
||
| # --- Publish rolling release --------------------------------------- | ||
|
|
||
| - name: Publish rolling preview-seed-fixture release | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | | ||
| set -euo pipefail | ||
| TAG="preview-seed-fixture" | ||
| FIXTURE="${GITHUB_WORKSPACE}/fixture.dump.gz" | ||
| MANIFEST="${GITHUB_WORKSPACE}/manifest.json" | ||
| PREAMBLE="${GITHUB_WORKSPACE}/restore-preamble.sql" | ||
| MIGRATION_HEAD="$(jq -r .migration_head "${MANIFEST}")" | ||
| DEV_SHA="$(jq -r .dev_sha "${MANIFEST}")" | ||
|
ntindle marked this conversation as resolved.
|
||
| NOTES="Rolling, fully SYNTHETIC preview-database seed fixture baked from dev@${DEV_SHA:0:12} (migration head: ${MIGRATION_HEAD}). Preview environments restore fixture.dump.gz (custom-format, gzipped, platform schema only, including _prisma_migrations) BEFORE running a PR's own migrations, so schema changes run against populated tables. RESTORE: apply restore-preamble.sql to the target database first (it creates the platform schema and installs the vector + pg_trgm extensions into it, which pg_dump --schema=platform omits), then run 'gunzip -c fixture.dump.gz | pg_restore -d <db> --no-owner' WITHOUT --exit-on-error (the dump's own CREATE SCHEMA collides benignly with the preamble's). SECURITY INVARIANT: this bake holds no cloud credentials and has no read path to any real database — it runs entirely against a throwaway Postgres container and contains only Faker-generated synthetic rows plus the already-public marketplace agent exports checked into autogpt_platform/backend/agents/. This asset is regenerated on every eligible dev push and weekly; treat it as disposable." | ||
|
ntindle marked this conversation as resolved.
|
||
| if gh release view "${TAG}" >/dev/null 2>&1; then | ||
| echo "Updating existing rolling release ${TAG}" | ||
| gh release edit "${TAG}" --title "Preview seed fixture (rolling)" --notes "${NOTES}" --prerelease | ||
|
ntindle marked this conversation as resolved.
|
||
| gh release upload "${TAG}" "${FIXTURE}" "${MANIFEST}" "${PREAMBLE}" --clobber | ||
| # Retarget the rolling tag at the baked dev commit so release | ||
| # metadata matches the published assets (manifest.dev_sha is the | ||
| # authoritative record either way). | ||
| gh api -X PATCH "repos/${GITHUB_REPOSITORY}/git/refs/tags/${TAG}" \ | ||
| -f sha="${DEV_SHA}" -F force=true >/dev/null | ||
| else | ||
| echo "Creating rolling release ${TAG}" | ||
| gh release create "${TAG}" "${FIXTURE}" "${MANIFEST}" "${PREAMBLE}" \ | ||
| --title "Preview seed fixture (rolling)" \ | ||
| --notes "${NOTES}" \ | ||
| --prerelease \ | ||
|
ntindle marked this conversation as resolved.
|
||
| --target "${DEV_SHA}" | ||
| fi | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -333,7 +333,7 @@ async def main(): | |
| ) | ||
| print("\nTop 5 agents by run count:") | ||
| for row in sample_runs: | ||
| print(f" - Agent {row['agentGraphId'][:8]}...: {row['run_count']} runs") | ||
| print(f" - Agent {row['graph_id'][:8]}...: {row['run_count']} runs") | ||
|
ntindle marked this conversation as resolved.
coderabbitai[bot] marked this conversation as resolved.
ntindle marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤖 🟢 low (discussion/unresolved-disagreement) Cursor Bugbot flagged the change to row['graph_id'] as a wrong column key; the author disputes it as a false positive, citing migration 20260304123456_update_store_views that mv_agent_run_counts exposes graph_id (not agentGraphId). This is the only application-code line in the PR and the bot/author disagreement is still standing. Suggestion: Confirm mv_agent_run_counts's column list against the referenced migration to close the disagreement before merge. |
||
|
|
||
| sample_reviews = await db.query_raw( | ||
| "SELECT * FROM mv_review_stats ORDER BY avg_rating DESC NULLS LAST LIMIT 5" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.