summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/manual.rb
blob: d01b09f1398c1764ee14d90afa0a6c384bd56995 (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 Manual < Status::Extended
          def illustration
            {
              image: 'illustrations/manual_action.svg',
              size: 'svg-394',
              title: _('This job requires a manual action'),
              content: _('This job depends on a user to trigger its process. Often they are used to deploy code to production environments')
            }
          end

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