CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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.
| f183fdf | 1 | -- 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. | |
| 4 | ALTER 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'; |