Skip to content

Commit 6b84323

Browse files
Add theme-aware SVG screenshots for 3 workshop images (#1953)
Generate light/dark SVG pairs for: - 08-actions-tab (Actions tab workflow list view) - 08-run-workflow-button (Run workflow button in sidebar) - 08-run-summary (Workflow run summary panel) Update workshop/08-run-your-workflow.md and workshop/08b-interpret-your-run.md to use GitHub's <picture> theme-aware pattern with light/dark srcset. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent de89d8f commit 6b84323

8 files changed

Lines changed: 237 additions & 3 deletions

workshop/08-run-your-workflow.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,21 @@ If you prefer the terminal, you can use [`gh aw run daily-report-status`](https:
5656

5757
Open your practice repository in GitHub and click **Actions** in the top navigation. In the left sidebar, select **Daily Report Status**.
5858

59-
![Actions tab showing where to find Daily Report Status in the workflow list](images/08-actions-tab.svg)
59+
<picture>
60+
<source media="(prefers-color-scheme: dark)" srcset="images/08-actions-tab-dark.svg">
61+
<source media="(prefers-color-scheme: light)" srcset="images/08-actions-tab-light.svg">
62+
<img alt="Actions tab showing where to find Daily Report Status in the workflow list" src="images/08-actions-tab-light.svg">
63+
</picture>
6064

6165
Click **Run workflow**, keep the default branch selected, and click the green **Run workflow** button. If **Daily Report Status** is missing, refresh the page and confirm both workflow files are on `main`. If you used the GitHub Copilot path, return to [Step 7c](07c-your-first-workflow-copilot.md) and confirm the workflow pull request was merged. If you used the Terminal path, run `gh aw compile` to check for compile errors.
6266

6367
If the run fails immediately with a model-access or authentication error, return to [Step 7d](07d-confirm-model-access.md) and confirm the selected billing method matches the workflow.
6468

65-
![Workflow sidebar with the Run workflow button highlighted](images/08-run-workflow-button.svg)
69+
<picture>
70+
<source media="(prefers-color-scheme: dark)" srcset="images/08-run-workflow-button-dark.svg">
71+
<source media="(prefers-color-scheme: light)" srcset="images/08-run-workflow-button-light.svg">
72+
<img alt="Workflow sidebar with the Run workflow button highlighted" src="images/08-run-workflow-button-light.svg">
73+
</picture>
6674

6775
![Run workflow confirmation dropdown showing branch selection and final Run workflow button](images/08-run-workflow-confirm-dropdown.svg)
6876

workshop/08b-interpret-your-run.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ After the run finishes, scroll to the **Summary** section on the run page. This
4141

4242
Then verify the real output in your repository. For **Daily Report Status**, that usually means opening the issue the agent touched and confirming the comment or new issue is actually there. The GitHub change is the ground truth behind the [safe-output](https://github.github.com/gh-aw/reference/safe-outputs/) record.
4343

44-
![Workflow run summary panel](images/08-run-summary.svg)
44+
<picture>
45+
<source media="(prefers-color-scheme: dark)" srcset="images/08-run-summary-dark.svg">
46+
<source media="(prefers-color-scheme: light)" srcset="images/08-run-summary-light.svg">
47+
<img alt="Workflow run summary panel" src="images/08-run-summary-light.svg">
48+
</picture>
4549

4650
## Check common error patterns first
4751

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

0 commit comments

Comments
 (0)