This may sound a little too technical, but is there a way to make generator-like workflows?
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators
So it could be something like:
- A workflow (containing 3 actions) is triggered.
- The first action runs and the workflow pauses based on a certain condition. It waits until the condition is met.
- The second action runs and the workflow again pauses.
- When all actions are completed, the workflow ends.