Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scm/driver/gitlab/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (s *gitService) FindBranch(ctx context.Context, repo, name string) (*scm.Re
func (s *gitService) FindCommit(ctx context.Context, repo, ref string) (*scm.Commit, *scm.Response, error) {
// if the reference is a branch, ensure forward slashes
// in the branch name are escaped.
if strings.Contains("ref", "/") {
if strings.Contains(ref, "/") {
ref = url.PathEscape(ref)
}
path := fmt.Sprintf("api/v4/projects/%s/repository/commits/%s", encode(repo), scm.TrimRef(ref))
Expand Down