What is this action?
It allows you to create loops by limiting the number of passes through a branch, and by proposing a different exit when the number of passes exceeds the set limit.
How to use it ?

When you have created the loop, add the Studio Action ProcessCounter by giving it:
- a name: so as not to confuse it with another counter in your script,
- as well as a maximum number of turns (X) after which you will have to take a different path from the loop,
Then creates 2 outputs branches:
- one with the condition "continue" : the caller passing less than X times will take this path in order to start the loop again,
- the other with the "break" condition: the caller who has passed X times through this counter will then take this path so as not to repeat the loop.
<aside>
⚠️ Don't forget to delete the context keys "continue" and "break" so that they don't disrupt the rest of the journey.
</aside>