Deployment Environment - CI/CD用語集の定義
Deployment environment とは、staging や production などの名前付きデプロイ先で、多くの場合、独自の保護ルールや secret を持ちます。
Deployment environment とは、staging や production など、pipeline がデプロイする名前付きのターゲットです。GitHub Actions では、environment に保護ルール、必須レビュアー、スコープ付き secret を持たせることができます。
保護ルール
GitHub Actions の environment では、job がデプロイする前に承認や待機タイマーを要求したり、secret にスコープを設定して production の認証情報を production environment だけで利用可能にしたりできます。
関連ガイド
Deployment Pipeline - CI/CD Glossary DefinitionDeployment Pipeline: A deployment pipeline is the automated path a change travels from commit through build,…
Continuous Delivery (Model) - CI/CD Glossary DefinitionContinuous Delivery (Model): Continuous delivery extends continuous integration by keeping every validated ch…
Pull Request - CI/CD Glossary DefinitionPull Request: A pull request is a proposal to merge changes from one branch into another. On GitHub it opens…