多个可扩展性操作脚本或操作流拆分路径以构成相同的输出。

version: "1"
flow: 
 flow_start:  
  next: forkAction  
forkAction:  
  fork:    
   next: [action1, action2]  
action1:   
 action: <action_name>  
 next: action3  
action3:  
  action: <action_name>    
  next: action4  
action4:  
  action: <action_name>  
   next: action7  
action7:  
  action: <action_name>                
action2:  
  action: <action_name>      
注: 通过将前一个操作分配为 next: 操作,可以循环回到前一个操作。例如,输入 next: action1 可以重新运行 action1 并重新开始操作序列,而不要输入 next: flow_end 来结束操作流。
分叉操作流允许操作遵循拆分路径。

图上分叉元素位置的说明。 分叉元素