feat(runner): verify non110 cd closure evidence

This commit is contained in:
Your Name
2026-06-29 10:37:33 +08:00
parent 7c9ddfa5b7
commit 7191193c71
8 changed files with 594 additions and 5 deletions

View File

@@ -222,6 +222,28 @@ def build_delivery_closure_workbench(
)
or ""
),
"non110_runner_cd_closure_verifier_schema_version": str(
production_deploy_readback.get(
"non110_runner_cd_closure_verifier_schema_version"
)
or ""
),
"non110_runner_cd_closure_verifier": str(
production_deploy_readback.get(
"non110_runner_cd_closure_verifier"
)
or ""
),
"non110_runner_cd_closure_status": str(
production_deploy_readback.get(
"non110_runner_cd_closure_status"
)
or ""
),
"non110_runner_cd_closure_required": production_deploy_readback.get(
"non110_runner_cd_closure_required"
)
is True,
"non110_runner_ready": production_deploy_readback.get(
"non110_runner_ready"
)
@@ -540,6 +562,24 @@ def build_delivery_closure_workbench(
production_deploy_readback.get("public_actions_queue_readback_verifier")
or ""
),
"production_deploy_non110_runner_cd_closure_verifier_schema_version": str(
production_deploy_readback.get(
"non110_runner_cd_closure_verifier_schema_version"
)
or ""
),
"production_deploy_non110_runner_cd_closure_verifier": str(
production_deploy_readback.get("non110_runner_cd_closure_verifier")
or ""
),
"production_deploy_non110_runner_cd_closure_status": str(
production_deploy_readback.get("non110_runner_cd_closure_status")
or ""
),
"production_deploy_non110_runner_cd_closure_required": (
production_deploy_readback.get("non110_runner_cd_closure_required")
is True
),
"production_deploy_non110_runner_ready": production_deploy_readback.get(
"non110_runner_ready"
)