Run multiple pipelines

Is it possible to create a pipline like this:

             /----A-------------\
clone -------                    ---- D
             \----B ----- C ----/

as far as i understand: yes. drone has depends_on. it is described here:

in short:

steps:
clone
a
b
c:
   depends_on:
   - b
d:
   depends_on:
   - a
   - c