backend - add 'paused' as a workflow run status (#3800)

This commit is contained in:
Jonathan Dobson
2025-10-23 09:58:43 -04:00
committed by GitHub
parent f66f50fc93
commit ae5a0de705
4 changed files with 9 additions and 1 deletions

View File

@@ -110,6 +110,7 @@ class WorkflowRunStatus(StrEnum):
canceled = "canceled"
timed_out = "timed_out"
completed = "completed"
paused = "paused"
def is_final(self) -> bool:
return self in [