summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/waiting_for_approval.rb
blob: 59869a947a9512b1216b69b7388ede8a2d8b3670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Build
        class WaitingForApproval < Status::Extended
          def illustration
            {
              image: 'illustrations/manual_action.svg',
              size: 'svg-394',
              title: 'Waiting for approval',
              content: "This job deploys to the protected environment \"#{subject.deployment&.environment&.name}\" which requires approvals. Use the Deployments API to approve or reject the deployment."
            }
          end

          def self.matches?(build, user)
            build.waiting_for_deployment_approval?
          end
        end
      end
    end
  end
end