多个可扩展性操作脚本按顺序运行。
version: "1" flow: flow_start: next: action1 action1: action: <action_name> next: action2 action2: action: <action_name> next: flow_end
注: 通过将前一个操作分配为
next: 操作,可以循环回到前一个操作。例如,在此示例中,输入
next: action1 可以重新运行 action1 并重新开始操作序列,而不要输入
next: flow_end。
|
|