順次実行される複数の拡張性アクション スクリプト。
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 を再実行し、一連のアクションを再起動できます。
|
|