Skip to content

Commit 22d1084

Browse files
authored
Update code-management-guidance.md
adding color
1 parent 1e83e66 commit 22d1084

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

draft/code-management-guidance.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ This is a DRAFT guidance outlines when work should go into the CivicActions corp
7272

7373
```mermaid
7474
flowchart TD
75+
%% Nodes
7576
Project["You want to publish something you did at CivicActions"]
7677
Client{"Is it for a client?"}
7778
ClientRepo{"Does the client have a repo?"}
@@ -85,24 +86,31 @@ flowchart TD
8586
Docs["Add docs and follow CivicActions governance"]
8687
DocsPersonal["Add an OSI license and credit CivicActions"]
8788
89+
%% Flow
8890
Project --> Client
8991
Client -->|Yes| ClientRepo
9092
Client -->|No| NeedCA
91-
9293
ClientRepo -->|Yes| UseClientRepo
9394
ClientRepo -->|No| WantPublic
94-
9595
NeedCA -->|Yes| WantPublic
9696
NeedCA -->|No| UsePersonalGH
97-
9897
WantPublic -->|Yes| Approval
9998
WantPublic -->|No| UseCAGL
100-
10199
Approval -->|Yes| UseCAGH
102100
Approval -->|No| UseCAGL
103-
104101
UseCAGH --> Docs
105-
106102
UsePersonalGH --> DocsPersonal
103+
104+
%% Preferred endpoints styling
105+
classDef prefNode fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px;
106+
class UseClientRepo,UseCAGH prefNode;
107+
108+
%% Preferred edges styling (thicker + green)
109+
linkStyle 1 stroke:#2e7d32,stroke-width:3px;
110+
linkStyle 3 stroke:#2e7d32,stroke-width:3px;
111+
linkStyle 5 stroke:#2e7d32,stroke-width:3px;
112+
linkStyle 7 stroke:#2e7d32,stroke-width:3px;
113+
linkStyle 9 stroke:#2e7d32,stroke-width:3px;
114+
107115
```
108116

0 commit comments

Comments
 (0)