diff --git a/MERMAID_DIAGRAM.md b/MERMAID_DIAGRAM.md index 947c634..4ee4374 100644 --- a/MERMAID_DIAGRAM.md +++ b/MERMAID_DIAGRAM.md @@ -6,19 +6,21 @@ graph TD subgraph graph_git_repo root[graph-git-repo] root --> gitignore[.gitignore] - root --> license[LICENSE] - root --> mermaid[MERMAID_DIAGRAM.md] + root --> LICENSE[LICENSE] + root --> MERMAID[MERMAID_DIAGRAM.md] root --> README[README.md] - root --> repo_structure[REPO_STRUCTURE.md] - root --> base[base.sh] - root --> tree_to_gpt[tree_to_gpt.py] + root --> REPO_STRUCTURE[REPO_STRUCTURE.md] + root --> action[action.yml] + root --> script[base.sh] + root --> tree_script[tree_to_gpt.py] end style graph_git_repo fill:#e0f7fa,stroke:#333,stroke-width:2px; - style gitignore fill:#ffccbc,stroke:#333,stroke-width:1px; - style license fill:#ffccbc,stroke:#333,stroke-width:1px; - style mermaid fill:#ffccbc,stroke:#333,stroke-width:1px; - style README fill:#ffccbc,stroke:#333,stroke-width:1px; - style repo_structure fill:#ffccbc,stroke:#333,stroke-width:1px; - style base fill:#ffccbc,stroke:#333,stroke-width:1px; - style tree_to_gpt fill:#ffccbc,stroke:#333,stroke-width:1px; + style gitignore fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style LICENSE fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style MERMAID fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style README fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style REPO_STRUCTURE fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style action fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style script fill:#bbdefb,stroke:#2196f3,stroke-width:1px; + style tree_script fill:#bbdefb,stroke:#2196f3,stroke-width:1px; ``` \ No newline at end of file diff --git a/REPO_STRUCTURE.md b/REPO_STRUCTURE.md index 66157f6..399f2f7 100644 --- a/REPO_STRUCTURE.md +++ b/REPO_STRUCTURE.md @@ -6,6 +6,7 @@ graph-git-repo ├── MERMAID_DIAGRAM.md ├── README.md ├── REPO_STRUCTURE.md +├── action.yml ├── base.sh └── tree_to_gpt.py ```