순차적으로 실행되는 여러 확장성 작업 스크립트입니다.
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을 다시 실행하고 작업 시퀀스를 다시 시작할 수 있습니다.
|
|