(repository: string)
| 63 | } |
| 64 | |
| 65 | private parseRepository(repository: string): Repository { |
| 66 | const [owner, repo] = repository.split('/') |
| 67 | return { |
| 68 | owner: owner, |
| 69 | repo: repo |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | private async getPullNumber( |
| 74 | baseRepository: string, |
no outgoing calls
no test coverage detected