8 real GH-200 flashcards, sampled across every domain the exam tests. Each concept card is paired with the misconception card built from the tempting wrong answer - the trap most decks skip. No account, no card.
The full deck has 1031 flashcards. For a domain-by-domain breakdown and a study plan, read the GH-200 study guide.
schoolConceptAuthor and manage workflows
Which GitHub Actions trigger fires a workflow on a recurring timetable, such as nightly at 02:00 UTC, with no commit and no manual action?
arrow_downward
The schedule event. It accepts one or more cron expressions evaluated in UTC, so an entry like '0 2 * * *' starts the workflow every night at 02:00 with no human action and no code change. It is the only event that honours a cron field.
errorMisconceptionAuthor and manage workflows
workflow_dispatch can fire a job automatically every night because its cron expression sets a default run time.
arrow_downward
workflow_dispatch only adds a manual Run workflow button and accepts no cron field, so it cannot fire automatically on a timetable. Recurring time-based runs come from the schedule event with a cron expression.
schoolConceptManage GitHub Actions for the enterprise
Which GitHub Actions component keeps shared security-scanning logic as one central definition so a fix immediately reaches every consuming repository?
arrow_downward
A reusable workflow. It lives in one repository and consumers reference it through the uses key at job level, so they execute the central file itself rather than a copy. A change to that file applies to every caller on its next run, so a single bug fix propagates without touching each repository.
errorMisconceptionManage GitHub Actions for the enterprise
A starter workflow can govern shared logic centrally because every repository runs an identical copy of the seeded security checks.
arrow_downward
Wrong. Selecting a starter workflow copies the file into the repository, so a later central fix never reaches copies already created. Starter workflows standardise how new repositories begin, but they do not stay a single shared definition. Use a reusable workflow when fixes must propagate to all consumers.
schoolConceptConsume and troubleshoot workflows
In GitHub Actions run history, which trigger produces a run with no associated commit, no named actor, and no recorded API dispatch?
arrow_downward
The schedule event. A cron-driven run fires on its own timetable with no human operator and no external caller, so GitHub attributes it to the workflow itself rather than to an actor. With no head commit and no API dispatch recorded, the time-based schedule trigger is the only remaining cause.
errorMisconceptionConsume and troubleshoot workflows
A push run can appear in history with a commit to main but with the pushing actor omitted from the interface.
arrow_downward
A push run always references a head commit and names the pusher as the actor. If a run shows no commit and no actor, push cannot be the cause, because both fields are always populated for a push event.
schoolConceptAuthor and maintain actions
Which action type bundles a sequence of existing shell run steps into one publishable unit callable with uses, without rewriting the logic?
arrow_downward
A composite action. Its action.yml declares a runs block with using: composite and a steps list, so several run steps are grouped into a single action that other workflows reference with uses. No Node entry point and no container image are needed, so plain shell logic is kept as is.
errorMisconceptionAuthor and maintain actions
A JavaScript action can package plain shell run steps once they are rewritten as a Node.js entry point.
arrow_downward
This misses the goal. A JavaScript action does run on the runner, but it requires the logic to be rewritten as a Node entry point. To bundle existing shell run steps unchanged, use a composite action with using: composite and a steps list.
Examworthy is not affiliated with or endorsed by GitHub. All flashcards are original, drawn from our own blueprint-aligned practice questions. We never reproduce live exam items. GH-200 and related marks belong to their respective owners.