Workflow order of execution

Do workflows always execute in the order that they are shown on the screen? Or is there ever a chance that workflows will run in a different order?

You mean the order of actions inside a workflow or different workflows on the same trigger?

@aurelie Different workflows on the same trigger.

They are all executed in order, but not awaited if asynchronous

1 Like

for anyone reading this in future, a custom javascript action can use promises and if using await, the workflow will pause until those promises resolve

2 Likes