Episode 2 — Who Actually Runs My Pipeline?

TL;DR AI
1 min readKey summary
After a git push, GitHub stores the commits and emits a push event.
It then checks registered webhooks and workflow files under .github/workflows.
GitHub Actions starts only if a workflow is configured to handle that event.
So a push alone does not trigger CI; the event and workflow setup determine whether automation runs.
