Skip to main content Skip to docs navigation
Check
View on GitHub

Action Condition

Action condition are used to check status (SKIPPED or DONE) of previous executed actions and Skip or Process current Action

On this page

Action Condition

  • Action condition are available from second Action only. As first Action do not have previous action status to check.
  • Action condition can check status of all previous action and not just immediate previous action status

Action Condition Modal

Action Condition consist of two part IF and THEN

IF

From name itself its clear that its the place where you configure your condition. you can add more than one condition with operator like OR and AND to it. It consist of three column. OPR (operator condition), Previous Action (whose status need to check), Status of previous action which need to be checked. And there is one more column which is to add or remove condition.

Action column is used to select the action for which status need to be checked.

Status column is simple which need to be check for that particular action. There are two status only for action which are SKIPPED or DONE. If by any condition on action if its skipped to next action its status is set as SKIPPED and if that action is completed successfully its status is set as DONE.

If you have more than one condition you need to select OPR. OPR are either OR / AND. By default AND is selected. These operator result as below.

Action 1 status resultOPRAction 2 status resultresult
trueORtruetrue
trueORfalsetrue
falseORtruetrue
falseORfalsefalse
trueANDtruetrue
trueANDfalsefalse
falseANDtruefalse
falseANDfalsefalse

THEN

This component is dependent on IF statement based on the final result of IF statement. Then has only two option to be selected SKIP / PROCEED. Below table show how it works.

IFTHENresult
trueSKIPSKIP
falseSKIPPROCEED
truePROCEEDPROCEED
falsePROCEEDSKIP