-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
Issue
In cmd/start.go:33, the return value of StartTaskDevelopment is ignored.
task.StartTaskDevelopment(issueNumberStr) // Error ignored!
task.MarkTaskInProgress(cfg, issueNumber)Problem
- If
gh issue developfails, execution continues - Command may fail silently
- Task marked as in-progress even if GitHub development setup failed
Solution
if err := task.StartTaskDevelopment(issueNumberStr); err != nil {
return cli.Exit(fmt.Sprintf("Error starting development: %v", err), 1)
}Impact
🔴 Critical - GitHub workflow can fail silently
Metadata
Metadata
Assignees
Labels
No labels