Platform
Workflows
Manage tasks, dependencies, retries, and validation.
Task Dependencies
Tasks can depend on other tasks. SeaSnoke uses those dependencies to decide what is ready to run and what still needs to wait.
flowchart TD A[Open task] --> B[Prepare data change] A --> C[Update API] B --> D[Run integration tests] C --> D D --> E[Ready for review]
dependencies:
- task: setup-database
- task: generate-migrations
optional: trueRetry Policies
Configure retries for transient failures:
retry:
max_attempts: 3
backoff: exponential
base_delay: 5s