Skip to content

Commit 575817f

Browse files
authored
Update 04-github-actions-intro.md
1 parent ff06955 commit 575817f

1 file changed

Lines changed: 0 additions & 25 deletions

File tree

workshop/04-github-actions-intro.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -106,31 +106,6 @@ Open a real workflow file and find the three core building blocks — no termina
106106
- One `jobs:` entry — what is the job named?
107107
- One `steps` item — what command does it run?
108108

109-
You don't need to understand every line. The goal is to see that a real workflow follows exactly the structure described above.
110-
111-
- [ ] I found the `on:` trigger in a real workflow
112-
- [ ] I identified a job name under `jobs:`
113-
- [ ] I found at least one `steps` command
114-
115-
## Check your understanding
116-
117-
Mark each statement as true or false, then reveal the answers:
118-
119-
- [ ] Workflow files live in `.github/workflows/` as YAML
120-
- [ ] The `on:` key defines when a workflow runs, not which commands to execute
121-
- [ ] Each step in a job runs on its own separate virtual machine
122-
- [ ] Agentic workflows replace scripted steps with a plain-language brief
123-
124-
<details>
125-
<summary>Reveal answers</summary>
126-
127-
1. True — workflow files live in `.github/workflows/` as YAML.
128-
2. True — `on:` is the trigger; commands go in `steps` entries.
129-
3. False — steps within a job share one runner; a new machine is provisioned per job.
130-
4. True — agentic workflows use a Markdown brief in place of scripted `steps`; the agent decides the how.
131-
132-
</details>
133-
134109
## ✅ Checkpoint
135110

136111
- [ ] I can identify `on`, `jobs`, and `steps` in a workflow file

0 commit comments

Comments
 (0)