Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
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.

0045_auto_close_stale.sqlBlame6 lines · 1 contributor
534f04aClaude1-- 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.
4ALTER 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;