File: dev_cycle.dot

package info (click to toggle)
kworkflow 1%3A0.6.2-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,148 kB
  • sloc: sh: 22,233; perl: 2,172; ansic: 96; python: 72; sql: 28; makefile: 19
file content (14 lines) | stat: -rw-r--r-- 479 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
digraph dev_cycle {
    node [fontname = "arial"]
    edge [fontname = "arial" arrowhead = "none"]
    {
        node [margin=0 fontcolor=blue shape=ellipse style=filled]
        master [fillcolor=yellow label="Master"]
        unstable [fillcolor=yellow label="Unstable"]
    }
    "Bug fixes" -> "Patch";
    "New features" -> "Patch";
    "Etc." -> "Patch";
    "Patch" -> unstable [label=" PR" arrowhead = "vee"];
    unstable -> master [label=" Merge" arrowhead = "vee"];
}