Annotation - CI/CD用語集の定義
GitHub Actions における annotation とは、workflow run(および任意で特定のファイルと行)に添付される notice、warning、error レベルのメッセージで、::error file=app.js,line=10::message のような workflow command で作成されます。
表示のされ方
annotation は run サマリーの上部と、pull request の diff 内にインラインで表示されるため、失敗した lint やテストが該当行を直接指し示します。多くの action は ::error/::warning の workflow command を出力することで自動的にこれらを生成します。
関連ガイド
Status Check - CI/CD Glossary DefinitionStatus Check: A status check is a pass or fail result reported against a commit (by CI or an app) that branch…
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…
Conditional Step - CI/CD Glossary DefinitionConditional Step: A conditional step is a job step (or job) with an `if:` expression that decides at runtime…