Use standard names for nodes on pull-request.dot.
This commit is contained in:
parent
3e3961b77d
commit
22948b3d10
1 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
digraph pr {
|
digraph pr {
|
||||||
graph [ dpi = 300 ];
|
graph [ dpi = 300 ];
|
||||||
"Patch (git branch)" -> "Open pull-request" [label=" Via web, usually"];
|
"Patch (git branch)" -> "Open pull-request" [label=" Via web, usually"];
|
||||||
"Open pull-request" -> "Review";
|
"Open pull-request" -> "Patch is reviewed";
|
||||||
"Review" -> "Patch (git branch)" [label=" Adjustments needed?"];
|
"Patch is reviewed" -> "Patch (git branch)" [label=" Adjustments needed?"];
|
||||||
"Review" -> "Incorporate into main repository" [label=" Accepted?"];
|
"Patch is reviewed" -> "Push to official repository" [label=" Accepted?"];
|
||||||
"Incorporate into main repository" -> "Ship to users" [label=" When release is stable"];
|
"Push to official repository" -> "Ship to users" [label=" When release is stable"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue