Build Trigger - CI/CD用語集の定義
build trigger は、CI pipeline を開始させるイベントまたは条件です。
build trigger は、pipeline を起動するイベントです。push、pull request、tag、スケジュール、または手動ディスパッチです。GitHub Actions では、trigger は on: キーの下で宣言されます。
一般的な trigger
| Trigger | 発火する条件 |
|---|---|
push | branch に commit がプッシュされたとき |
pull_request | PR が開かれた、または更新されたとき |
schedule | cron の時刻に達したとき |
workflow_dispatch | ユーザーが手動で実行したとき |
関連ガイド
Trigger (Event) - CI/CD Glossary DefinitionTrigger (Event): A **trigger** is the event that starts a workflow - `push`, `pull_request`, `schedule`, `wor…
Build Step - CI/CD Glossary DefinitionBuild Step: A build step is a single unit of work in a job, either a shell command (`run:`) or a reusable act…
Build Stage - CI/CD Glossary DefinitionBuild Stage: A build stage is a logical phase in a pipeline (build, test, deploy) that groups jobs and usuall…