Skip to content
Snippets Groups Projects
Commit 297b0f77 authored by Wayne Beaton's avatar Wayne Beaton
Browse files

Add diagrams to describe relationships with Github and GitLab

parent 3e268a44
No related branches found
No related tags found
No related merge requests found
digraph {
bgcolor=transparent;
rankdir=LR;
splines=ortho;
node [shape=box,style=filled,fillcolor=white,fontsize=12];
subgraph cluster_committers {
label="Eclipse Project"
/*
* We need unicode version 13 support to get a stick figure.
* project_lead [label=<<FONT POINT-SIZE="24">🯅</FONT><br/>Project Lead>;shape=none;style=rounded];
*/
project_lead [label="Project Lead"];
committer [label="Committer"];
contributor [label="Contributor"];
}
subgraph cluster_github {
label="Github Organization";
committers;
leads;
contributors;
repository[label="";shape="cylinder"];
}
edge [fontsize=10;minlen=2];
project_lead -> leads [taillabel="*"];
committer -> committers [taillabel="*"];
contributor -> contributors [taillabel="*"];
leads -> repository [taillabel="maintain";headlabel="*"];
committers -> repository [taillabel="push"];
contributors -> repository [taillabel="triage"];
}
\ No newline at end of file
digraph {
bgcolor=transparent;
rankdir=LR;
splines=ortho;
node [shape=box,style=filled,fillcolor=white,fontsize=12];
subgraph cluster_committers {
label="Eclipse Project"
/*
* We need unicode version 13 support to get a stick figure.
* project_lead [label=<<FONT POINT-SIZE="24">🯅</FONT><br/>Project Lead>;shape=none;style=rounded];
*/
project_lead [label="Project Lead"];
committer [label="Committer"];
contributor [label="Contributor"];
}
subgraph cluster_github {
label="GitLab Group";
committers;
leads;
contributors;
repository[label=""; shape="cylinder"];
}
edge [fontsize=10;minlen=2];
project_lead -> leads [taillabel="*"];
committer -> committers [taillabel="*"];
contributor -> contributors [taillabel="*"];
leads -> repository [taillabel="Maintainer";headlabel="*"];
committers -> repository [taillabel="Developer"];
contributors -> repository [taillabel="Reporter"];
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment