diff --git a/slides/Slides.md b/slides/Slides.md
index feabf1f..4f9087d 100644
--- a/slides/Slides.md
+++ b/slides/Slides.md
@@ -75,7 +75,39 @@ Demo: [Online Parser](https://yaml-online-parser.appspot.com/)

# What is CI/CD?
-
+
+flowchart LR
+ subgraph Continuous Integration
+ direction LR
+ A[Code] --Check In--> B[Build]
+ B --Auto--> C[Unit Tests]
+ C --Auto--> D[Dev Release]
+ D --Auto--> E[Additional Tests]
+ end
+
+
+
+flowchart LR
+ subgraph Continuous Delivery
+ direction LR
+ G[Code] --Check In--> H[Build]
+ H --Auto--> I[Unit Tests]
+ I --Auto--> J[Dev Release]
+ J --Auto--> K[Additional Tests]
+ K --Manual--> L[Release]
+ end
+
+
+flowchart LR
+ subgraph Continuous Deployment
+ direction LR
+ M[Code] --Check In--> N[Build]
+ N --Auto--> O[Unit Tests]
+ O --Auto--> P[Dev Release]
+ P --Auto--> Q[Additional Tests]
+ Q --Auto--> R[Release]
+ end
+
---
@@ -88,7 +120,7 @@ Demo: [Online Parser](https://yaml-online-parser.appspot.com/)
---
-
+
# Workflows
- [Events](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows) trigger workflows
@@ -98,7 +130,7 @@ Demo: [Online Parser](https://yaml-online-parser.appspot.com/)
---
-
+
# Jobs
- Workflows can contain multiple jobs
- Each job runs on a [Runner](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners)
@@ -150,3 +182,9 @@ Demo: [Online Parser](https://yaml-online-parser.appspot.com/)
+
+
+
diff --git a/slides/img/event-job.drawio.png b/slides/img/event-job.drawio.png
new file mode 100644
index 0000000..9d766fb
Binary files /dev/null and b/slides/img/event-job.drawio.png differ
diff --git a/slides/img/job-runner.drawio.png b/slides/img/job-runner.drawio.png
new file mode 100644
index 0000000..54525db
Binary files /dev/null and b/slides/img/job-runner.drawio.png differ