gitlab-org--gitlab-foss/app/workers/pipeline_success_worker.rb
Shinya Maeda 197a3d0533 Introduce sidekiq worker for auto merge process
As we have a central domain for auto merge process today,
we should use a single worker for any auto merge process.
2019-06-04 10:51:32 +07:00

12 lines
201 B
Ruby

# frozen_string_literal: true
class PipelineSuccessWorker
include ApplicationWorker
include PipelineQueue
queue_namespace :pipeline_processing
def perform(pipeline_id)
# no-op
end
end