BigW Consortium Gitlab

pipeline_notification_worker.rb 289 Bytes
class PipelineNotificationWorker
  include Sidekiq::Worker
  include PipelineQueue

  def perform(pipeline_id, recipients = nil)
    pipeline = Ci::Pipeline.find_by(id: pipeline_id)

    return unless pipeline

    NotificationService.new.pipeline_finished(pipeline, recipients)
  end
end