2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
18 lines
461 B
Ruby
18 lines
461 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineSuccessWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_processing
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(pipeline_id)
|
|
Ci::Pipeline.find_by(id: pipeline_id).try do |pipeline|
|
|
MergeRequests::MergeWhenPipelineSucceedsService
|
|
.new(pipeline.project, nil)
|
|
.trigger(pipeline)
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|