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 {
|
||||
graph [ dpi = 300 ];
|
||||
"Patch (git branch)" -> "Open pull-request" [label=" Via web, usually"];
|
||||
"Open pull-request" -> "Review";
|
||||
"Review" -> "Patch (git branch)" [label=" Adjustments needed?"];
|
||||
"Review" -> "Incorporate into main repository" [label=" Accepted?"];
|
||||
"Incorporate into main repository" -> "Ship to users" [label=" When release is stable"];
|
||||
"Open pull-request" -> "Patch is reviewed";
|
||||
"Patch is reviewed" -> "Patch (git branch)" [label=" Adjustments needed?"];
|
||||
"Patch is reviewed" -> "Push to official repository" [label=" Accepted?"];
|
||||
"Push to official repository" -> "Ship to users" [label=" When release is stable"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue