0
0
No-Codeknowledge~10 mins

Basic workflows and actions in No-Code - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Basic workflows and actions
Start Workflow
Trigger Event
Perform Action 1
Perform Action 2
Check Condition?
NoEnd Workflow
Yes
Perform Conditional Action
End Workflow
A workflow starts with a trigger, then performs a series of actions, optionally checks a condition, and ends.
Execution Sample
No-Code
Trigger: New email received
Action 1: Save attachment
Action 2: Send notification
Condition: Attachment size > 5MB
Action 3: Alert admin
This workflow reacts to a new email, saves its attachment, sends a notification, and alerts admin if the attachment is large.
Analysis Table
StepEvent/ConditionResultAction TakenNext Step
1New email receivedTrueSave attachmentStep 2
2Attachment savedSuccessSend notificationStep 3
3Notification sentSuccessCheck attachment size > 5MBStep 4
4Attachment size > 5MB?FalseSkip alert adminStep 5
5Workflow ends---
💡 Workflow ends after all actions complete or condition check fails.
State Tracker
VariableStartAfter Step 1After Step 2After Step 3Final
Email ReceivedNoYesYesYesYes
Attachment SavedNoYesYesYesYes
Notification SentNoNoYesYesYes
Attachment Size > 5MBUnknownUnknownUnknownFalseFalse
Admin Alert SentNoNoNoNoNo
Key Insights - 3 Insights
Why does the workflow stop after checking the condition if it is false?
Because the condition 'Attachment size > 5MB?' is false at Step 4, the workflow skips the conditional action and proceeds to end, as shown in the execution_table row 4.
What triggers the first action in the workflow?
The trigger event 'New email received' at Step 1 starts the workflow and causes the first action 'Save attachment' to run, as seen in the execution_table row 1.
Why is the 'Admin Alert Sent' variable still 'No' at the end?
Because the condition to send the alert was false, the action to alert admin never ran, so 'Admin Alert Sent' remains 'No' as tracked in variable_tracker.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what action happens at Step 2?
ACheck attachment size
BSave attachment
CSend notification
DAlert admin
💡 Hint
Refer to execution_table row 2 under 'Action Taken'
At which step does the workflow decide not to alert the admin?
AStep 3
BStep 4
CStep 5
DStep 1
💡 Hint
Check execution_table row 4 for the condition result and action taken
If the attachment size was greater than 5MB, what would change in the variable tracker?
A'Admin Alert Sent' would change to 'Yes'
B'Notification Sent' would change to 'No'
C'Attachment Saved' would change to 'No'
D'Email Received' would change to 'No'
💡 Hint
Look at variable_tracker row for 'Admin Alert Sent' and consider the condition in execution_table row 4
Concept Snapshot
Basic workflows start with a trigger event.
They perform a series of actions in order.
Conditions can control if some actions run.
Workflow ends after all actions or when stopped by a condition.
Variables track progress and results.
Full Transcript
A basic workflow begins when a trigger event happens, such as receiving an email. Then, it performs actions step-by-step, like saving an attachment and sending a notification. Sometimes, it checks a condition to decide if more actions should run, for example, alerting an admin if the attachment is large. If the condition is false, the workflow skips that action and ends. Variables keep track of what has happened at each step, helping to understand the workflow's progress and outcome.