Skip to content

Commit 5b11950

Browse files
Add theme-aware SVG pairs for 3 workshop images (#2020)
1 parent 5152fe2 commit 5b11950

9 files changed

Lines changed: 353 additions & 3 deletions

workshop/00-welcome.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99

1010
By the end of this workshop, a real AI agent will create an issue with a summary of the activity in your repository over the latest 24h, every day, without you writing shell-script workflow code.
1111

12-
![Sample daily repository status report generated by the finished workflow](images/00-daily-repo-status-output.svg)
12+
<picture>
13+
<source media="(prefers-color-scheme: dark)" srcset="images/00-daily-repo-status-output-dark.svg">
14+
<source media="(prefers-color-scheme: light)" srcset="images/00-daily-repo-status-output-light.svg">
15+
<img alt="Sample daily repository status report generated by the finished workflow" src="images/00-daily-repo-status-output-light.svg">
16+
</picture>
1317

1418
You'll build a **[GitHub Agentic Workflow](https://github.github.com/gh-aw/introduction/overview/)**:
1519
> A GitHub Action that uses AI to inspect your repository, decide what matters, and publish a useful status report on a schedule — practical enough to adapt for real teams.

workshop/04-github-actions-intro.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,11 @@ Traditional workflows execute a fixed script path. [Agentic workflows](https://g
7474
7575
The diagram below shows how the five key parts fit together in every workflow file.
7676
77-
![GitHub Actions workflow anatomy: trigger, job, runner, steps, and actions shown as nested layers](images/04-actions-anatomy.svg)
77+
<picture>
78+
<source media="(prefers-color-scheme: dark)" srcset="images/04-actions-anatomy-dark.svg">
79+
<source media="(prefers-color-scheme: light)" srcset="images/04-actions-anatomy-light.svg">
80+
<img alt="GitHub Actions workflow anatomy: trigger, job, runner, steps, and actions shown as nested layers" src="images/04-actions-anatomy-light.svg">
81+
</picture>
7882
7983
Before reading on, label each highlighted part of the workflow below with its type:
8084
`trigger`, `job`, `runner`, `step`, or `action`.

workshop/07-your-first-workflow.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ _Writing your first workflow is the moment theory becomes practice — let's mak
88

99
You'll use Copilot to create `.github/workflows/daily-report-status.md` — a scheduled workflow that also supports manual dispatch. You'll configure it with [`permissions`](https://github.github.com/gh-aw/reference/permissions/), [`safe-outputs`](https://github.github.com/gh-aw/reference/safe-outputs/), and a task brief, then compile it to produce `daily-report-status.lock.yml`, the file [GitHub Actions](https://github.github.com/gh-aw/guides/github-actions-primer/) runs.
1010

11-
![Diagram showing how daily-report-status.md is compiled by gh aw compile into daily-report-status.lock.yml which GitHub Actions then executes](images/07-compile-flow.svg)
11+
<picture>
12+
<source media="(prefers-color-scheme: dark)" srcset="images/07-compile-flow-dark.svg">
13+
<source media="(prefers-color-scheme: light)" srcset="images/07-compile-flow-light.svg">
14+
<img alt="Diagram showing how daily-report-status.md is compiled by gh aw compile into daily-report-status.lock.yml which GitHub Actions then executes" src="images/07-compile-flow-light.svg">
15+
</picture>
1216

1317
## 📋 Before You Start
1418

Lines changed: 39 additions & 0 deletions
Loading
Lines changed: 39 additions & 0 deletions
Loading
Lines changed: 61 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)