Skip to content

Commit

Permalink
Fix flowchart
Browse files Browse the repository at this point in the history
  • Loading branch information
daabr committed Aug 7, 2024
1 parent 920994a commit 2df79f6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions task_chain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,23 @@ This project demonstrates running a sequence of tasks, in several ways.

```mermaid
flowchart LR
slack{Slack event}
slack{"`Slack
Event`"}
task1[Task 1]
task2[Task 2]
task3a[Task 3]
task3b[Task 3 retry]
task3b[Task 3 (Retry)]
task4[Task 4]
error(("`Workflow
Error`"))
success(("`Workflow
Success`"))
slack -. Slash command .-> task1
slack -. Retry button clicked .-> task3b
slack -. Slash Command .-> task1
slack -. Retry Button Clicked .-> task3b
subgraph Workflow 2
task3b --> task4 -.-> success
end
subgraph Workflow 1
task1 --> task2 --> task3a -.-> error -. Retry/abort message .-> slack
task1 --> task2 --> task3a -.-> error -. Retry/Abort Message .-> slack
end
```

0 comments on commit 2df79f6

Please sign in to comment.