SequenceDiagrams

Examples

CI/CD Pipeline Sequence Diagram

This CI/CD pipeline sequence diagram follows a commit from push through build, test, registry publish, and production deployment. Autonumbering makes the release path easy to scan during reviews or incident writeups.

CI/CD PipelineDevGitCIRegistryProd1. Push commit2. Trigger build3. Runtestsdeploy4. Push image5. Deploy6. Live

Diagram source

Use this text as a starting point or open it in the editor to make changes.

title: CI/CD Pipeline
// autonumber
Dev -> Git: Push commit
Git ->> CI: Trigger build
CI -> CI: Run tests
--: deploy
CI ->> Registry: Push image
Registry ->> Prod: Deploy
Prod --> Dev: Live