summaryrefslogtreecommitdiff
path: root/app/workers/update_external_pull_requests_worker.rb
blob: c5acfa82ada2deea05b24159b59f8100006f4d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class UpdateExternalPullRequestsWorker
  include ApplicationWorker

  def perform(project_id, user_id, ref)
    project = Project.find_by_id(project_id)
    return unless project

    user = User.find_by_id(user_id)
    return unless user

    branch = Gitlab::Git.branch_name(ref)
    return unless branch

    external_pull_requests = project.external_pull_requests
      .by_source_repository(project.import_source)
      .by_source_branch(branch)

    external_pull_requests.find_each do |pull_request|
      ExternalPullRequests::CreatePipelineService.new(project, user)
        .execute(pull_request)
    end
  end
end