feat(HAI-005): complete Step 1 — add autoMerge to Settings model

This commit is contained in:
Dustin Byrne
2026-03-25 20:41:43 -04:00
parent 7f3cf51c19
commit dd3ebe9148

View File

@@ -46,12 +46,14 @@ export interface Settings {
maxConcurrent: number;
maxWorktrees: number;
pollIntervalMs: number;
autoMerge: boolean;
}
export const DEFAULT_SETTINGS: Settings = {
maxConcurrent: 2,
maxWorktrees: 4,
pollIntervalMs: 15000,
autoMerge: false,
};
export interface BoardConfig {