ci(cd): expose build and post-deploy stages
All checks were successful
CD Pipeline / tests (push) Successful in 9m16s
Code Review / ai-code-review (push) Successful in 11s
CD Pipeline / build-and-deploy (push) Successful in 4m47s
CD Pipeline / post-deploy-checks (push) Successful in 1m20s

This commit is contained in:
Your Name
2026-05-21 20:35:09 +08:00
parent f5f3a10bf6
commit f322781798
4 changed files with 54 additions and 0 deletions

View File

@@ -1071,8 +1071,10 @@
"success": "Success"
},
"stage": {
"buildDeploy": "Build and deploy",
"codeReview": "Code review",
"postDeploy": "Post deploy",
"postDeployChecks": "Post deploy checks",
"rolloutRisk": "Rollout risk recovered",
"tests": "Tests"
}

View File

@@ -1072,8 +1072,10 @@
"success": "成功"
},
"stage": {
"buildDeploy": "建置與部署",
"codeReview": "程式碼審查",
"postDeploy": "部署後驗證",
"postDeployChecks": "部署後驗證",
"rolloutRisk": "部署風險已恢復",
"tests": "測試"
}

View File

@@ -77,8 +77,10 @@ const CICD_STATUS_LABEL_KEYS: Record<string, string> = {
}
const CICD_STAGE_LABEL_KEYS: Record<string, string> = {
'build-and-deploy': 'cicd.stage.buildDeploy',
'code-review': 'cicd.stage.codeReview',
'post-deploy': 'cicd.stage.postDeploy',
'post-deploy-checks': 'cicd.stage.postDeployChecks',
'rollout-risk': 'cicd.stage.rolloutRisk',
tests: 'cicd.stage.tests',
}