debian-mirror-gitlab/app/workers/update_external_pull_requests_worker.rb

34 lines
841 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class UpdateExternalPullRequestsWorker # rubocop:disable Scalability/IdempotentWorker
2019-12-04 20:38:33 +05:30
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2019-12-21 20:55:43 +05:30
feature_category :source_code_management
2020-03-13 15:44:24 +05:30
weight 3
2020-06-23 00:09:42 +05:30
loggable_arguments 2
2019-12-21 20:55:43 +05:30
2019-12-04 20:38:33 +05:30
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|
2020-04-22 19:07:51 +05:30
Ci::ExternalPullRequests::CreatePipelineService.new(project, user)
2019-12-04 20:38:33 +05:30
.execute(pull_request)
end
end
end