Switch language한국어
Back to the list

Episode 2 — Who Actually Runs My Pipeline?

TL;DR AI

Key summary

1 min read
  1. After a git push, GitHub stores the commits and emits a push event.

  2. It then checks registered webhooks and workflow files under .github/workflows.

  3. GitHub Actions starts only if a workflow is configured to handle that event.

  4. So a push alone does not trigger CI; the event and workflow setup determine whether automation runs.

Read the original