Home

madison / open-git

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

Merge branch 'main' into style/repository-page-polish

last month

827b8de
Authored
Madison8/2/2026, 1:48:08 AM

Parents95531d1b0e909e

39 files changed
  • apps/web/app/[username]/[repository]/pulls/[number]/actions.ts+63−0
  • apps/web/app/[username]/[repository]/pulls/[number]/pull-request-detail.tsx+9−0
  • apps/web/app/[username]/[repository]/pulls/[number]/pull-request-merge-box.tsx+59−10
  • apps/web/app/[username]/[repository]/pulls/[number]/pull-request-sidebar.tsx+17−3
  • apps/web/app/[username]/[repository]/repository-layout-shell.tsx+2−2
  • apps/web/app/forgot-password/forgot-password-form.tsx+98−0
  • apps/web/app/forgot-password/page.tsx
+58
−91
  • apps/web/app/settings/account/account-settings-sections/auth.tsx+0−1
  • apps/web/app/settings/account/account-settings-sections/connections.tsx+0−1
  • apps/web/app/settings/account/account-settings-sections/payments.tsx+0−2
  • apps/web/app/settings/account/account-settings-sections/profile.tsx+0−1
  • apps/web/app/settings/account/account-settings-sections/sessions.tsx+0−1
  • apps/web/app/settings/account/account-settings-sections/settings.tsx+0−1
  • apps/web/app/settings/account/agent-sessions/page.tsx+5−8
  • apps/web/app/settings/account/connections/page.tsx+6−1
  • apps/web/app/settings/account/emails/page.tsx+6−1
  • apps/web/app/settings/account/payments/page.tsx+6−1
  • apps/web/app/settings/account/profile/page.tsx+6−1
  • apps/web/app/settings/account/sessions/page.tsx+6−1
  • apps/web/app/settings/account/settings/page.tsx+6−1
  • apps/web/app/settings/account/sponsorships/page.tsx+6−1
  • apps/web/app/settings/account/teams/new/create-organization-form.tsx+5−8
  • apps/web/app/settings/developer/page.tsx+6−10
  • apps/web/app/settings/layout.tsx+1−1
  • apps/web/app/settings/organizations/[slug]/danger/page.tsx+7−0
  • apps/web/app/settings/organizations/[slug]/general/page.tsx+7−0
  • apps/web/app/settings/organizations/[slug]/members/page.tsx+7−0
  • apps/web/app/settings/organizations/[slug]/repositories/page.tsx+7−0
  • apps/web/components/auth-panel-content.tsx+5−4
  • apps/web/components/settings-nav.tsx+2−2
  • apps/web/components/settings-page-header.tsx+18−0
  • apps/web/components/workbench-tabs/workbench-tab-bar.tsx+2−10
  • apps/web/lib/git/git-command.ts+84−11
  • apps/web/lib/github/sync/enqueue.ts+24−0
  • apps/web/lib/pull-requests/merge-tree.test.ts+85−0
  • apps/web/lib/pull-requests/merge-tree.ts+80−0
  • apps/web/lib/pull-requests/pr-mergeability-indexer.ts+10−1
  • apps/web/lib/pull-requests/update-pull-request-branch.test.ts+227−0
  • apps/web/lib/pull-requests/update-pull-request-branch.ts+231−0