Home

madison / open-git

public
Overview Code History Branches Pull requestsIssuesInsights Campfire Docs
main
HomeOverview Code PRsIssues

fix lint errors. Adjust drizzle migrations.

last month

cdd9423
Authored
moss8/20/2026, 3:25:25 AM

Parenta3307f1

47 files changed
  • apps/web/app/[username]/[repository]/releases/actions.ts+17−2
  • apps/web/app/[username]/[repository]/releases/download/[tag]/[...asset]/route.ts+82−17
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/page.tsx+71−50
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/release-writer-actions.tsx+15−11
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/[id]/route.ts+6−4
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/route.ts+11−2
  • apps/web/db/schema.ts+1−1
  • apps/web/drizzle/0066_confused_gwen_stacy.sql+4−0
  • apps/web/drizzle/meta/0066_snapshot.json+12174−0
  • apps/web/drizzle/meta/_journal.json+8−1
  • apps/web/lib/api/v1-openapi.ts+7−2
  • apps/web/lib/bots/webhook-events.test.ts+1−1
  • apps/web/lib/bots/webhook-events.ts+8−0
  • apps/web/lib/bots/webhooks.ts+40−0
  • apps/web/lib/github/sync/apply-webhook.test.ts+46−0
  • apps/web/lib/github/sync/apply-webhook.ts+49−0
  • apps/web/lib/github/sync/backfill.ts+8−0
  • apps/web/lib/github/sync/enqueue.ts+13−0
  • apps/web/lib/github/sync/releases-inbound.ts+195−0
  • apps/web/lib/github/sync/releases-outbound.ts+77−0
  • apps/web/lib/github/sync/run-job.ts+20−0
  • apps/web/lib/releases/api-access.ts+38−0
  • apps/web/lib/releases/create-release.ts+11−3
  • apps/web/lib/releases/manage-release.ts+4−0
  • apps/web/lib/releases/notify-published.ts+34−0
  • apps/web/lib/releases/overview-downloads.test.ts+19−2
  • apps/web/lib/releases/overview-downloads.ts+16−3
  • apps/web/lib/releases/publish-from-workflow.ts+22−15
  • apps/web/lib/releases/release-build-state.test.ts+44−1
  • apps/web/lib/releases/release-build-state.ts+42−2
  • apps/web/lib/releases/release-object-storage.ts+38−0
  • apps/web/lib/releases/serialize-release.ts+9−0
  • apps/web/lib/releases/ship-from-tag-push.ts+2−2
  • apps/web/lib/releases/source-archive.test.ts+41−0
  • apps/web/lib/releases/source-archive.ts+98−0
  • apps/web/package.json+1−0
  • docs/github-sync.md+8−2
  • docs/integrations/webhooks.md+26−4
  • docs/openapi.json+12−2
  • packages/github-sync/src/__tests__/webhook.test.ts+1−0
  • packages/github-sync/src/api.ts+82−0
  • packages/github-sync/src/client.ts+34−3
  • packages/github-sync/src/job-keys.ts+10−0
  • packages/github-sync/src/types.ts+25−0
  • packages/github-sync/src/webhook-payload.ts+20−0
  • packages/github-sync/src/webhook.ts+1−0
  • pnpm-lock.yaml+3−0