Webhook - Definição do Glossário de CI/CD
Um webhook é um POST HTTP que um sistema (como o GitHub) envia para uma URL quando um evento ocorre, para que um serviço de CI possa reagir instantaneamente em vez de fazer polling.
No CI
O GitHub entrega webhooks de push e pull_request para iniciar workflows; uma entrega perdida ou com falha é uma causa comum de "meu build nunca rodou".
Guias relacionados
Build Trigger - CI/CD Glossary DefinitionA build trigger is the event - a push, pull request, schedule, or manual dispatch - that starts a CI build. T…
Trigger (Event) - CI/CD Glossary DefinitionTrigger (Event): A **trigger** is the event that starts a workflow - `push`, `pull_request`, `schedule`, `wor…
Status Check - CI/CD Glossary DefinitionA status check is the pass/fail result a CI job reports to a commit or pull request. Required checks block me…