Build Trigger - Definição do Glossário CI/CD
Um build trigger é o evento ou a condição que faz um pipeline de CI iniciar.
Um build trigger é o evento que dispara um pipeline: um push, um pull request, uma tag, um agendamento ou um disparo manual. No GitHub Actions, os triggers são declarados sob a chave on:.
Triggers comuns
| Trigger | Dispara quando |
|---|---|
push | commits são enviados para um branch |
pull_request | um PR é aberto ou atualizado |
schedule | um horário cron é atingido |
workflow_dispatch | um usuário o executa manualmente |
Guias relacionados
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…