Workflow Run - Definição do Glossário de CI/CD
Um workflow run é uma única execução de um workflow do GitHub Actions, disparado por um evento, com seu próprio run ID único, logs, status e conjunto de jobs.
Reexecutando
Você pode reexecutar um workflow run inteiro ou apenas seus jobs que falharam pela aba Actions ou com gh run rerun <id> --failed, o que reutiliza o commit e as entradas originais.
O trigger workflow_run
Um workflow separado pode escutar on: workflow_run para encadear após outro terminar, por exemplo fazendo deploy apenas depois que uma execução de CI é bem-sucedida.
Guias relacionados
Matrix Expansion - CI/CD Glossary DefinitionMatrix Expansion: Matrix expansion is how a single matrix job definition multiplies into one job per combinat…
Retry with Backoff - CI/CD Glossary DefinitionRetry with Backoff: Retry with backoff is retrying a failed operation after a delay that grows between attemp…
Artifact Registry - CI/CD Glossary DefinitionArtifact Registry: An artifact registry is a server that stores and serves build outputs (container images, J…