我正在研究一个具有以下流程图的项目:
我正在尝试使用美人鱼复制它,但是我无法以与图形中完全相同,简单的方式来对其进行布局。
我能做到的最好的是:
graph LR
a[Develop]-->b
b[Push To Master]-->c
subgraph Automatic
c{Security Scanner Pass?}--Yes-->d
d{Tests Pass?}--Yes-->e
e[Automatically deployed to test environment]-->f
end
d--No-->a
c--No-->a
f--No-->a
f{Everything OK?}--Yes-->g[git push production master]
看起来一团糟,没有一个明确定义的起点:
我一直在使用他们的在线编辑器the progress for which you can see here。