summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/success_warning.rb
blob: 4d7d82e04cf0e17950834884787f999496b93d7e (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
module Gitlab
  module Ci
    module Status
      ##
      # Extended status used when pipeline or stage passed conditionally.
      # This means that failed jobs that are allowed to fail were present.
      #
      class SuccessWarning < Status::Extended
        def text
          s_('CiStatusText|passed')
        end

        def label
          s_('CiStatusLabel|passed with warnings')
        end

        def icon
          'icon_status_warning'
        end

        def group
          'success_with_warnings'
        end

        def self.matches?(subject, user)
          subject.success? && subject.has_warnings?
        end
      end
    end
  end
end