From 727e8b13e1decd8e1fed58b0735213b14393611e Mon Sep 17 00:00:00 2001 From: Umesh Banga Date: Tue, 16 Jun 2026 11:11:45 +0100 Subject: [PATCH] Add prod approval gate after int --- azure/azure-release-pipeline.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/azure/azure-release-pipeline.yml b/azure/azure-release-pipeline.yml index 41d0a60..ff0f980 100644 --- a/azure/azure-release-pipeline.yml +++ b/azure/azure-release-pipeline.yml @@ -30,7 +30,8 @@ extends: service_name: ${{ variables.service_name }} short_service_name: ${{ variables.short_service_name }} service_base_path: ${{ variables.service_base_path }} - prod_producer_approval: true + prod_requires_approval: false + manual_approval_env: ${{ variables.service_name }} apigee_deployments: - environment: internal-dev post_deploy: @@ -40,6 +41,10 @@ extends: - environment: int depends_on: - internal_dev - - environment: prod + - environment: manual-approval + stage_name: prod_approval depends_on: - int + - environment: prod + depends_on: + - prod_approval