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

0107_auto_repair_mode.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.

0107_auto_repair_mode.sqlBlame5 lines · 1 contributor
64aa989Claude1-- Add auto_repair_mode to per-repo automation settings.
2-- Default 'suggest' = runs but never auto-commits (current behavior preserved).
3-- Owners can set to 'off' to fully disable the bot from touching their branch.
4ALTER TABLE repo_automation_settings
5 ADD COLUMN IF NOT EXISTS auto_repair_mode TEXT NOT NULL DEFAULT 'suggest';