From dfad89ef8140c3422bf4f75ef3b9a266e81b5286 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 14 Apr 2026 18:35:13 +0000 Subject: [PATCH] fix: remove br tags from mermaid diagram (GitHub compat) [ci skip] --- docs/architecture/incident-response.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/architecture/incident-response.md b/docs/architecture/incident-response.md index ddb11e77..2728a5c1 100644 --- a/docs/architecture/incident-response.md +++ b/docs/architecture/incident-response.md @@ -8,24 +8,24 @@ Automated incident response pipeline that handles the full lifecycle: detection ```mermaid graph TD - A[Incident Detected] --> B[Interactive Mitigation
Claude Code CLI] + A[Incident Detected] --> B[Interactive Mitigation] B --> C{Cluster Healthy?} C -->|No| B - C -->|Yes| D[/post-mortem skill
generates markdown] - D --> E[git push to
docs/post-mortems/*.md] + C -->|Yes| D[post-mortem skill] + D --> E[git push post-mortem] E --> F[GitHub Webhook] - F --> G[Woodpecker Pipeline
postmortem-todos.yml] - G --> H[parse-postmortem-todos.sh
Extract safe TODOs] + F --> G[Woodpecker Pipeline] + G --> H[Parse safe TODOs] H --> I{Safe TODOs?} - I -->|None| J[Slack: No auto-implementable TODOs] - I -->|Found| K[Vault Auth
K8s SA JWT] - K --> L[Fetch SSH Key
secret/ci/infra] - L --> M[SSH to DevVM
10.0.10.10] - M --> N[Claude Code Headless
postmortem-todo-resolver agent] - N --> O[Implement TODOs
Terraform plan/apply] - O --> P[Update Post-Mortem
Follow-up Table] + I -->|None| J[Slack: nothing to do] + I -->|Found| K[Vault Auth via K8s SA] + K --> L[Fetch SSH Key] + L --> M[SSH to DevVM] + M --> N[Claude Code Headless Agent] + N --> O[Terraform plan + apply] + O --> P[Update Post-Mortem] P --> Q[git push] - Q --> R[GHA: Deploy to
GitHub Pages] + Q --> R[GHA: GitHub Pages] Q --> S[Slack Notification] style B fill:#6366f1