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

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

    queue_namespace :deployment
    feature_category :continuous_delivery
    worker_resource_boundary :cpu

    def perform(deployment_id)
      Deployment.find_by_id(deployment_id).try do |deployment|
        break unless deployment.success?

        Deployments::AfterCreateService.new(deployment).execute
      end
    end
  end
end