(taskId: string)
| 81 | } |
| 82 | |
| 83 | function executionIdForTask(taskId: string): string { |
| 84 | return `headless-${taskId}-${Date.now().toString(36)}-${Math.random().toString(36).slice(2)}` |
| 85 | } |
| 86 | |
| 87 | function taskIdForClientRequest(repoId: string, clientRequestId: string | undefined): string | undefined { |
| 88 | if (!clientRequestId) return undefined |
no outgoing calls
no test coverage detected