()
| 125 | } |
| 126 | |
| 127 | export function githubAuthHeaders(): Record<string, string> { |
| 128 | return process.env.GITHUB_TOKEN |
| 129 | ? { Authorization: `Bearer ${process.env.GITHUB_TOKEN}` } |
| 130 | : {}; |
| 131 | } |
| 132 | |
| 133 | const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms)); |
| 134 |
no outgoing calls
no test coverage detected