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

module Deployments
  class ExecuteHooksWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    queue_namespace :deployment
    feature_category :continuous_delivery
    worker_resource_boundary :cpu

    def perform(deployment_id)
      if (deploy = Deployment.find_by_id(deployment_id))
        deploy.execute_hooks
      end
    end
  end
end