mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-05 09:33:07 +00:00
Update app/electron/services/mcp-server-factory.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -44,8 +44,8 @@ class McpServerFactory {
|
|||||||
|
|
||||||
// If agent tries to mark as verified but feature has skipTests=true, convert to waiting_approval
|
// If agent tries to mark as verified but feature has skipTests=true, convert to waiting_approval
|
||||||
let finalStatus = args.status;
|
let finalStatus = args.status;
|
||||||
// Convert 'todo' to 'backlog' for consistency
|
// Convert 'todo' to 'backlog' for consistency, but only for new features
|
||||||
if (finalStatus === "todo") {
|
if (!feature && finalStatus === "todo") {
|
||||||
finalStatus = "backlog";
|
finalStatus = "backlog";
|
||||||
}
|
}
|
||||||
if (feature && args.status === "verified" && feature.skipTests === true) {
|
if (feature && args.status === "verified" && feature.skipTests === true) {
|
||||||
|
|||||||
Reference in New Issue
Block a user