CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
0045_auto_close_stale.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.
| 534f04a | 1 | -- Block M5: Stale PR/issue sweeper — per-repo opt-out flags. |
| 2 | -- Additive only. Defaults to `true` so the autopilot two-stage close | |
| 3 | -- runs on every existing repo unless the owner explicitly disables it. | |
| 4 | ALTER TABLE repositories | |
| 5 | ADD COLUMN IF NOT EXISTS auto_close_stale_prs boolean NOT NULL DEFAULT true, | |
| 6 | ADD COLUMN IF NOT EXISTS auto_close_stale_issues boolean NOT NULL DEFAULT true; |