summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/manual.rb
blob: cb587a7815ecc8be52338084266a858bd919f194 (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
25
26
27
28
29
30
31
32
module Gitlab
  module Ci
    module Status
      class Manual < Status::Core
        def text
          s_('CiStatusText|manual')
        end

        def label
          s_('CiStatusLabel|manual action')
        end

        def icon
          'status_manual'
        end

        def favicon
          'favicon_status_manual'
        end

        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
      end
    end
  end
end