feat(ui): update default standard workflow template

This commit is contained in:
Fu Diwei
2025-03-07 12:27:22 +08:00
parent 5ae460c922
commit 6ccbdeb89a
3 changed files with 6 additions and 3 deletions

View File

@@ -196,6 +196,9 @@ export const initWorkflow = (options: InitWorkflowOptions = {}): WorkflowModel =
current.next = newNode(WorkflowNodeType.Deploy, {});
current = current.next;
current.next = newNode(WorkflowNodeType.ExecuteResultBranch, {});
current = current.next!.branches![1];
current.next = newNode(WorkflowNodeType.Notify, {});
}