Update cmd/pm/tasks/codingTask.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robin Olsen
2026-03-04 17:32:55 +01:00
committed by GitHub
parent 077cbc96e8
commit f0025f8929

View File

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