@@ -15,14 +15,11 @@ Convert well-defined issues into draft pull requests automatically.
1515### How It Works
1616
1717``` mermaid
18- flowchart TD
19- A[Issue Opened] --> B{Well-defined?}
20- B -->|No| C[Request Clarification]
21- B -->|Yes| D[Analyze Issue]
22- D --> E[Self-Review Analysis]
23- E --> F[Create Branch]
24- F --> G[Create Draft PR]
25- G --> H[Link to Issue]
18+ flowchart LR
19+ A[Issue] --> B{Clear?}
20+ B -->|No| C[Clarify]
21+ B -->|Yes| D[Implement]
22+ D --> E[Draft PR]
2623```
2724
2825### Implementation
@@ -102,10 +99,9 @@ AI-powered code review on every pull request.
10299### Workflow
103100
104101` ` ` mermaid
105- flowchart TD
106- A[PR Opened/Updated] --> B[AI Reviews Code]
107- B --> C[Self-Review Findings]
108- C --> D[Post Review Comment]
102+ flowchart LR
103+ A[PR] --> B[AI Review]
104+ B --> C[Post Comment]
109105```
110106
111107### Workflow YAML
@@ -157,12 +153,10 @@ Automatically merge low-risk dependency updates.
157153### Flow
158154
159155` ` ` mermaid
160- flowchart TD
161- A[Dependabot PR] --> B{Patch Version?}
162- B -->|No| C[Require Human Review]
163- B -->|Yes| D{CI Passes?}
164- D -->|No| C
165- D -->|Yes| E[Auto-Merge]
156+ flowchart LR
157+ A[Dependabot PR] --> B{Patch + CI Pass?}
158+ B -->|No| C[Human Review]
159+ B -->|Yes| D[Auto-Merge]
166160```
167161
168162### Auto-Merge YAML
@@ -221,13 +215,12 @@ Clean up inactive issues automatically.
221215# ## Process
222216
223217` ` ` mermaid
224- flowchart TD
225- A[Weekly Schedule] --> B[Find Inactive Issues]
226- B --> C[Add Stale Label]
227- C --> D[Wait 7 Days]
228- D --> E{Activity?}
229- E -->|Yes| F[Remove Stale Label]
230- E -->|No| G[Close Issue]
218+ flowchart LR
219+ A[Weekly] --> B[Find Inactive]
220+ B --> C[Label Stale]
221+ C --> D{Activity?}
222+ D -->|Yes| E[Remove Label]
223+ D -->|No| F[Close]
231224` ` `
232225
233226# ## Stale YAML
0 commit comments