Reusable Workflow - CI/CD 用語集の定義
reusable workflow とは、他の workflow が uses: で呼び出せる完全な workflow ファイルで、workflow_call トリガーで宣言され、CI ロジックを一度定義してリポジトリ間で共有できるようにします。
action との違い
reusable workflow は job 全体を定義し、自身の runner 上で実行されますが、composite action は 1 つの job 内の step の集合です。呼び出し側は inputs:、secrets: を渡し、呼び出された workflow で定義された outputs: を受け取ります。
関連ガイド
Reusable Workflow - CI/CD Glossary DefinitionReusable Workflow: A **reusable workflow** is a workflow other workflows can call with `uses:`, letting teams…
Composite Action - CI/CD Glossary DefinitionComposite Action: A composite action is a custom action defined with `runs.using: "composite"` that bundles m…
Job Matrix - CI/CD Glossary DefinitionJob Matrix: A job matrix is a `strategy.matrix` definition that expands a single job into multiple parallel j…