Status Check - CI/CD用語集の定義
status check とは、commit に対して(CI やアプリによって)報告される合格または失敗の結果で、branch protection が pull request の merge 前に必須とすることができます。
必須 check
branch protection では特定の check を必須としてマークするため、それらがグリーンになるまで PR は merge できません。GitHub Actions の job は、その job 名で check として表示されます。「require branches to be up to date」と組み合わせて、check が最新の base に対して実行されたことを保証します。
関連ガイド
Annotation - CI/CD Glossary DefinitionAnnotation: An annotation in GitHub Actions is a message attached to a workflow run (and optionally a specifi…
Branch Protection - CI/CD Glossary DefinitionBranch Protection: Branch protection is a set of rules on a branch (usually `main`) that enforce policy befor…
Job Summary - CI/CD Glossary DefinitionJob Summary: A job summary is custom Markdown a step writes to the `$GITHUB_STEP_SUMMARY` file, rendered on t…