git-next/crates/repo-actor/README.md
Paul Campbell de4481efa5
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
WIP: refactor: repo-actor: rewrite tests using mockall
2024-06-23 17:45:51 +01:00

32 lines
715 B
Markdown

```mermaid
stateDiagram-v2
[*] --> CloneRepo :START
CloneRepo --> LoadConfigFromRepo
CloneRepo --> ValidateRepo
LoadConfigFromRepo --> LoadedConfig
ValidateRepo --> NextAheadOfMainCheckStatus
ValidateRepo --> DevAheadOfNextAdvanceNext
ValidateRepo --> ValidateRepo :on invalid SLEEP 10s
NextAheadOfMainCheckStatus --> AdvanceMainTo
NextAheadOfMainCheckStatus --> ValidateRepo :SLEEP 10s
DevAheadOfNextAdvanceNext --> ValidateRepo :SLEEP 10s
LoadedConfig --> ValidateRepo
LoadedConfig --> RegisterWebhook
RegisterWebhook --> WebhookRegistered
WebhookRegistered --> [*]
AdvanceMainTo --> LoadConfigFromRepo
AdvanceMainTo --> ValidateRepo
[*] --> WebhookMessage :WEBHOOK
WebhookMessage --> ValidateRepo
```