Add spec for runner

This commit is contained in:
Fabrice Reix 2023-10-19 12:02:57 +02:00
parent d032cacffc
commit babf683978
No known key found for this signature in database
GPG Key ID: BF5213154B2E7155

View File

@ -0,0 +1,9 @@
## Running an entry
```mermaid
flowchart
entrystart[Run Entry] --> skip{skip}
skip -->|false| exec[Exec Request]
exec --> entryend
skip -->|true| entryend[End]
```