workflow run - CI/CD 用語集の定義
workflow run とは、イベントによって起動される GitHub Actions workflow の 1 回の実行で、固有の run ID、ログ、ステータス、そして一連の job を持ちます。
再実行
workflow run 全体、あるいは失敗した job のみを、Actions タブから、または gh run rerun <id> --failed で再実行できます。これは元の commit と入力を再利用します。
workflow_run トリガー
別の workflow が on: workflow_run をリッスンして、他の workflow の完了後に連鎖させることができます。例えば、CI 実行が成功した後にのみ deploy する、といった具合です。
関連ガイド
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…