多個擴充性動作指令碼會依序執行。
version: "1" flow: flow_start: next: action1 action1: action: <action_name> next: action2 action2: action: <action_name> next: flow_end
備註: 您可以透過將先前動作指派為
next: 動作,來循環回先前動作。例如,在此範例中,您可以不執行
next: flow_end,而輸入
next: action1 重新執行 action1 並重新啟動動作序列。
|
|