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:
Christian Gick
2026-01-09 00:13:31 +02:00
parent f193581805
commit 3fc8f2d5e0
2 changed files with 53 additions and 3 deletions

View File

@@ -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;