How do I return to a step near the beginning of my activity flow.
In my contrived example I want to go from "should we return to the beginning?" and it should go to the already existing "Starts here" rather than creating a new one.
I have read through the docs 3-4x I just can't find it anywhere.
@startuml
:starts here;
repeat :check something;
repeat while (did it work) is (no)
->yes;
if (should we return to the beginning) then (yes)
:starts here;
else (no)
endif
@enduml