Extract methods to import comments on a GitHub Pull Request

parent d72b2581
......@@ -56,7 +56,6 @@ module Gitlab
target_branch = find_branch(pull_request.base.ref)
if source_branch && target_branch
# Pull Request
merge_request = MergeRequest.create!(
title: pull_request.title,
description: format_body(pull_request.user.login, pull_request.body),
......@@ -71,7 +70,13 @@ module Gitlab
updated_at: pull_request.updated_at
)
# Comments on Pull Request
import_comments_on_pull_request(merge_request, pull_request)
import_comments_on_pull_request_diff(merge_request, pull_request)
end
end
end
def import_comments_on_pull_request(merge_request, pull_request)
client.issue_comments(project.import_source, pull_request.number).each do |c|
merge_request.notes.create!(
project: project,
......@@ -81,8 +86,9 @@ module Gitlab
updated_at: c.updated_at
)
end
end
# Comments on Pull Request diff
def import_comments_on_pull_request_diff(merge_request, pull_request)
client.pull_request_comments(project.import_source, pull_request.number).each do |c|
merge_request.notes.create!(
project: project,
......@@ -95,8 +101,6 @@ module Gitlab
)
end
end
end
end
def find_branch(name)
project.repository.find_branch(name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment