GitHub free flashcards

Free GH-200 flashcards

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.

ConceptAuthor 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?

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.

MisconceptionAuthor and manage workflows

workflow_dispatch can fire a job automatically every night because its cron expression sets a default run time.

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.

ConceptManage 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?

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.

MisconceptionManage 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.

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.

ConceptConsume 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?

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.

MisconceptionConsume and troubleshoot workflows

A push run can appear in history with a commit to main but with the pushing actor omitted from the interface.

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.

ConceptAuthor 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?

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.

MisconceptionAuthor and maintain actions

A JavaScript action can package plain shell run steps once they are rewritten as a Node.js entry point.

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.

Get all 1031 GH-200 flashcards free

Drop your email and we will keep you posted as new GH-200 study material ships. No spam - we mail you only when it is worth your time.

Frequently asked questions

Are these GH-200 flashcards free?

Yes. Every card on this page is free to read with no sign-up. The full deck has 1031 flashcards; drop your email below and we will keep you posted, or create a free account to study the rest.

What is a misconception card?

A card built from a tempting wrong answer in our question bank, naming the trap and explaining why it fails. Most flashcard decks only drill the fact (a concept card); we pair each one with the misconception the exam actually tests you against.

Are these real GH-200 exam questions or vendor content?

No. These are original flashcards written from our own blueprint-aligned practice questions. We never reproduce live exam items or vendor material.

How many flashcards are in the full GH-200 deck?

1031 cards spread across all 5 domains. For the full domain-by-domain breakdown, read the study guide.

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.