We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948b8a6 commit 89af332Copy full SHA for 89af332
modules/migrations/github.go
@@ -631,7 +631,7 @@ func convertGithubReview(r *github.PullRequestReview) *base.Review {
631
}
632
633
634
-func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullRequestComment) ([]*base.ReviewComment,error) {
+func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullRequestComment) ([]*base.ReviewComment, error) {
635
var rcs = make([]*base.ReviewComment, 0, len(cs))
636
for _, c := range cs {
637
// get reactions
@@ -672,7 +672,7 @@ func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullReques
672
UpdatedAt: c.GetUpdatedAt(),
673
})
674
675
- return rcs,nil
+ return rcs, nil
676
677
678
// GetReviews returns pull requests review
0 commit comments