gitlab-org--gitlab-foss/app/workers/pipeline_hooks_worker.rb

14 lines
251 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-12 11:44:33 +00:00
class PipelineHooksWorker
include ApplicationWorker
include PipelineQueue
2016-10-12 11:44:33 +00:00
2017-11-28 16:16:50 +00:00
queue_namespace :pipeline_hooks
2016-10-12 11:44:33 +00:00
def perform(pipeline_id)
Ci::Pipeline.find_by(id: pipeline_id)
.try(:execute_hooks)
end
end