feat: Add 'testing' status to task workflow
Workflow: open → in_progress → testing → completed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -6,7 +6,7 @@ export interface Task {
|
||||
title: string;
|
||||
description?: string;
|
||||
type: 'task' | 'bug' | 'feature' | 'debt';
|
||||
status: 'open' | 'in_progress' | 'blocked' | 'completed';
|
||||
status: 'open' | 'in_progress' | 'testing' | 'blocked' | 'completed';
|
||||
priority: 'P0' | 'P1' | 'P2' | 'P3';
|
||||
version_id?: string;
|
||||
epic_id?: string;
|
||||
|
||||
Reference in New Issue
Block a user