gitLabPID returns the full project path (owner/repo) for use as a pid. The library handles URL encoding internally.
(owner, repo string)
| 74 | // gitLabPID returns the full project path (owner/repo) for use as a pid. |
| 75 | // The library handles URL encoding internally. |
| 76 | func gitLabPID(owner, repo string) string { |
| 77 | return owner + "/" + repo |
| 78 | } |
| 79 | |
| 80 | func (g *gitlabProvider) FetchPullRequestStatus( |
| 81 | ctx context.Context, |
no outgoing calls
no test coverage detected