When PR is merged, move task to done (vibe-kanban) (#46)

* Task attempt b1f4f450-03ee-4cd1-aeb5-9b9f6fbfc487 - Final changes

* Task attempt b1f4f450-03ee-4cd1-aeb5-9b9f6fbfc487 - Final changes

* Task attempt b1f4f450-03ee-4cd1-aeb5-9b9f6fbfc487 - Final changes

* Cargo fmt

* Clippy
This commit is contained in:
Louis Knight-Webb
2025-07-01 17:45:00 +01:00
committed by GitHub
parent 82ff822f8d
commit e22988da51
14 changed files with 511 additions and 33 deletions

View File

@@ -56,7 +56,7 @@ export type UpdateTask = { title: string | null, description: string | null, sta
export type TaskAttemptStatus = "setuprunning" | "setupcomplete" | "setupfailed" | "executorrunning" | "executorcomplete" | "executorfailed";
export type TaskAttempt = { id: string, task_id: string, worktree_path: string, branch: string, merge_commit: string | null, executor: string | null, created_at: string, updated_at: string, };
export type TaskAttempt = { id: string, task_id: string, worktree_path: string, branch: string, merge_commit: string | null, executor: string | null, pr_url: string | null, pr_number: bigint | null, pr_status: string | null, pr_merged_at: string | null, created_at: string, updated_at: string, };
export type CreateTaskAttempt = { executor: string | null, base_branch: string | null, };