Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit9301ca8unknown_key

Merge remote-tracking branch 'origin/feat/smart-digest-context' into copilot/feat-smart-morning-digest-review-context-restore

Merge remote-tracking branch 'origin/feat/smart-digest-context' into copilot/feat-smart-morning-digest-review-context-restore

# Conflicts:
#	src/db/schema.ts
#	src/lib/autopilot.ts
#	src/routes/pulls.tsx
copilot-swe-agent[bot] committed on June 7, 2026Parents: d7a5c0c b93fc3e
2 files changed+809301ca8587d7e7f47ea3b1968bef476c4e292843
2 changed files+8−0
Addeddrizzle/0088_pr_visits.sql+6−0View fileUnifiedSplit
1CREATE TABLE IF NOT EXISTS pr_visits (
2 pr_id UUID NOT NULL REFERENCES pull_requests(id) ON DELETE CASCADE,
3 user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
4 visited_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
5 PRIMARY KEY (pr_id, user_id)
6);
Addeddrizzle/0089_smart_digest_pref.sql+2−0View fileUnifiedSplit
1ALTER TABLE users ADD COLUMN IF NOT EXISTS notify_smart_digest BOOLEAN NOT NULL DEFAULT true;
2ALTER TABLE users ADD COLUMN IF NOT EXISTS last_smart_digest_sent_at TIMESTAMPTZ;
03