Improve branch, merge, rebase (#37)
* Always create task branch * Create new ref * Save new branch name in DB * Refactor rebase backend * Update merging functionality * Clippy
This commit is contained in:
committed by
GitHub
parent
a1c97f787e
commit
c9fada8979
@@ -54,7 +54,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, 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, created_at: string, updated_at: string, };
|
||||
|
||||
export type CreateTaskAttempt = { executor: string | null, base_branch: string | null, };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user