ParseRepositoryOrigin parses a remote origin URL (HTTPS or SSH) into owner and repo components, returning the normalized HTTPS URL. Returns false if the URL does not match this provider.
(raw string)
| 153 | // normalized HTTPS URL. Returns false if the URL does not |
| 154 | // match this provider. |
| 155 | ParseRepositoryOrigin(raw string) (owner, repo, normalizedOrigin string, ok bool) |
| 156 | |
| 157 | // ParsePullRequestURL parses a pull request URL into a |
| 158 | // PRRef. Returns false if the URL does not match this |
no outgoing calls