summaryrefslogtreecommitdiff
path: root/app/workers/build_hooks_worker.rb
blob: b0c3676714c0cda9ffd1fb907f916cdeb5d209ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class BuildHooksWorker
  include ApplicationWorker
  include PipelineQueue

  queue_namespace :pipeline_hooks

  # rubocop: disable CodeReuse/ActiveRecord
  def perform(build_id)
    Ci::Build.find_by(id: build_id)
      .try(:execute_hooks)
  end
  # rubocop: enable CodeReuse/ActiveRecord
end