(status: WorkflowRunStatus)
| 364 | } |
| 365 | |
| 366 | function workflowRunTerminalOutcome(status: WorkflowRunStatus): TerminalAttentionOutcome { |
| 367 | switch (status) { |
| 368 | case "completed": |
| 369 | return "completed"; |
| 370 | case "failed": |
| 371 | return "failed"; |
| 372 | case "interrupted": |
| 373 | return "interrupted"; |
| 374 | default: |
| 375 | return "error"; |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | function workspaceTurnTerminalOutcome(status: WorkspaceTurnTaskStatus): TerminalAttentionOutcome { |
| 380 | switch (status) { |
no outgoing calls
no test coverage detected