Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
Blame · Line-by-line history

0108_push_automation_modes.sql

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

0108_push_automation_modes.sqlBlame6 lines · 1 contributor
f183fdfClaude1-- Add per-repo toggles for push-time AI automations that open issues or PRs.
2-- Default 'off' — both features were previously gated by server-level env vars
3-- (AI_AUTO_ISSUES=1, no per-repo opt-in). 'suggest' = enabled.
4ALTER TABLE repo_automation_settings
5 ADD COLUMN IF NOT EXISTS auto_issues_mode TEXT NOT NULL DEFAULT 'off',
6 ADD COLUMN IF NOT EXISTS doc_drift_mode TEXT NOT NULL DEFAULT 'off';