feat: complete production workflow migration

This commit is contained in:
2026-08-06 14:29:57 +08:00
parent 7f215e79c4
commit 8df5266abb
448 changed files with 56937 additions and 14619 deletions
+1 -2
View File
@@ -54,7 +54,7 @@ def run_doctor(settings: Settings) -> DoctorReport:
]
try:
catalog = WorkflowCatalog.load(settings.project_root / "config")
catalog_ok = len(catalog.scheduled_workflows()) == 21
catalog_ok = len(catalog.scheduled_workflows()) == 23
catalog_message = f"catalog has {len(catalog.scheduled_workflows())} scheduled workflows"
except Exception:
catalog_ok = False
@@ -91,4 +91,3 @@ def _probe_write_permission(path: Path) -> tuple[bool, str]:
except OSError:
return False, "data-root parent is not writable"
return True, "data-root parent write probe passed"