Skip to content

Commit ff3bb99

Browse files
authored
Update code-management-guidance.md -
1 parent f7e95ae commit ff3bb99

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

draft/code-management-guidance.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,29 @@ flowchart TD
157157
K --> L
158158
```
159159

160-
This Markdown file includes all four decision trees, and they should render correctly in a Markdown environment that supports Mermaid. Let me know if you need any further assistance!
160+
161+
## Decision Tree 5
162+
163+
```mermaid
164+
flowchart TD
165+
A[You want to publish something you did at CivicActions] -->|Yes| B[Is it for a client?]
166+
A -->|No| D[Is it an experi]
167+
168+
B -->|Yes| C[Is this a team project?]
169+
B -->|No| E[Put it in the Personal GitHub Repo]
170+
171+
C -->|Yes| F[Put it in the Corporate GitHub Repo]
172+
C -->|No| E
173+
174+
F --> G[Add docs & follow CivicActions governance]
175+
176+
B -->|No| H[Is it client work?]
177+
H -->|Yes| I[Does the client have a repository?]
178+
I -->|Yes| J[Use the client's repository]
179+
I -->|No| K[Obtain client approval to use CivicActions GitHub or GitLab]
180+
181+
H -->|No| D
182+
183+
J --> L[Add docs & follow CivicActions governance]
184+
K --> L
185+
```

0 commit comments

Comments
 (0)