From f0025f8929a96cd35ff626d33d07b1080725ece2 Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Wed, 4 Mar 2026 17:32:55 +0100 Subject: [PATCH] Update cmd/pm/tasks/codingTask.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- cmd/pm/tasks/codingTask.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/pm/tasks/codingTask.go b/cmd/pm/tasks/codingTask.go index 009a013..4866145 100644 --- a/cmd/pm/tasks/codingTask.go +++ b/cmd/pm/tasks/codingTask.go @@ -131,6 +131,7 @@ func (t *CodingTask) Validate(ctx context.Context) ValidationFeedback { } expect.Assert(t.setupIssue.Assignee == "Me", "The original issue should be assigned to 'Me'. Please assign the issue to yourself.") + expect.Assert(t.setupIssue.Status == models.StatusInProgress, "The original issue should be marked as In Progress before starting work. Please update the issue status to In Progress.") expect.Assert(len(issues) > 0, "No new issues created. Please create an issue with the specified details.") if len(issues) == 0 {