Platform

Workflows

Manage tasks, dependencies, retries, and validation.

Edit this page

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.

Mermaid
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: true

Retry Policies

Configure retries for transient failures:

retry:
  max_attempts: 3
  backoff: exponential
  base_delay: 5s

On this page