summaryrefslogtreecommitdiff
path: root/internal/task
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-04-04 08:38:18 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-04-04 08:38:18 +0000
commit63be708dce1e0b6e0ccf033c92c7e0567df9690b (patch)
treed2cd5975a28e063c3f2e63e59659a7c2d99fe059 /internal/task
parent027e85fc8c38267e6a04d8361febbacaff18f48a (diff)
feat: add AcceptanceCriteria, CheckerForTaskID, CheckerReport to Task struct
Diffstat (limited to 'internal/task')
-rw-r--r--internal/task/task.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/task/task.go b/internal/task/task.go
index 0d1026f..9f1f92f 100644
--- a/internal/task/task.go
+++ b/internal/task/task.go
@@ -83,6 +83,9 @@ type Task struct {
DependsOn []string `yaml:"depends_on" json:"depends_on"`
StoryID string `yaml:"-" json:"story_id,omitempty"`
BranchName string `yaml:"-" json:"branch_name,omitempty"`
+ AcceptanceCriteria string `yaml:"-" json:"acceptance_criteria,omitempty"`
+ CheckerForTaskID string `yaml:"-" json:"checker_for_task_id,omitempty"`
+ CheckerReport string `yaml:"-" json:"checker_report,omitempty"`
State State `yaml:"-" json:"state"`
RejectionComment string `yaml:"-" json:"rejection_comment,omitempty"`
QuestionJSON string `yaml:"-" json:"question,omitempty"`