[workshop-diagrams] Add explanatory SVG diagram for GitHub-hosted execution flow#979
Merged
pelikhan merged 1 commit intoJul 14, 2026
Conversation
Illustrates how gh-aw runs entirely on GitHub's infrastructure for the UI path, explaining why no local installation is needed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a conceptual SVG diagram to Step 6c: GitHub UI Path — No Installation Needed (
workshop/06c-install-ui.md) to visually explain why no localgh-awinstallation is required.What changed
workshop/06c-install-ui.md— added one image reference after the "Why no installation is needed" proseworkshop/images/06c-github-hosted-execution.svgConcept illustrated
The diagram shows the GitHub-hosted execution flow for the UI path:
gh aw compileconverts the Markdown workflow file to a lock.yml — entirely in the cloudThe "No local install needed" badge reinforces the key message.
Why the diagram helps learners
Learners coming from a terminal background may wonder why there's nothing to install. A visual showing the full execution chain — from browser to GitHub's cloud infrastructure — makes it immediately clear that all the
gh-awmachinery runs server-side, not on their machine. This prevents confusion and builds a correct mental model before learners start writing workflow files in Step 7b.