Skip to content

Commit

Permalink
fix(gitlab): make sure entire project path is shown (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell committed Oct 2, 2023
1 parent 3e6cd75 commit 280dfc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scm/gitlab/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func (g *Gitlab) GetPullRequests(ctx context.Context, branchName string) ([]scm.
continue
}

prs = append(prs, convertMergeRequest(mr, project.Path, project.Namespace.Path))
prs = append(prs, convertMergeRequest(mr, project.Path, project.Namespace.FullPath))
}

return prs, nil
Expand Down

0 comments on commit 280dfc7

Please sign in to comment.