Build Log - CI/CD用語集の定義
build logとは、CIのjobのコンソール出力を記録したもので、失敗の診断に使います。
build log とは、job内の各stepのstdoutとstderrを記録したものです。buildが成功または失敗した理由を示す主要な証拠であり、エラー文字列、スタックトレース、タイミングが現れる場所です。
log内のsecret
CIは登録済みのsecretをbuild log内でマスクし、* に置き換えます。secretを自分で出力してはいけません。マスクの対象はGitHubがsecretと認識している値のみです(secret masking** を参照)。
関連ガイド
Build Step - CI/CD Glossary DefinitionBuild Step: A build step is a single unit of work in a job, either a shell command (`run:`) or a reusable act…
Secret Masking - CI/CD Glossary DefinitionSecret Masking: Secret masking is the runner behavior that scans log output for registered secret values and…
Log Scrubbing - CI/CD Glossary DefinitionLog Scrubbing: Log scrubbing is the practice of filtering CI log output to remove secrets, PII, or noise, whe…