Webhook - CI/CD 用語集の定義
webhook とは、イベントが発生したときにシステム (GitHub など) が URL へ送る HTTP POST で、CI サービスが polling する代わりに即座に反応できるようにします。
CI において
GitHub は workflow を開始するために push や pull_request の webhook を配信します。配信の欠落や失敗は、「build が一度も走らなかった」の一般的な原因です。
関連ガイド
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…