gitlab-org--gitlab-foss/lib/gitlab/ci/status/success_warning.rb

32 lines
659 B
Ruby
Raw Normal View History

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
2017-06-07 20:13:44 +00:00
s_('CiStatusText|passed')
end
def label
2017-06-07 20:13:44 +00:00
s_('CiStatusLabel|passed with warnings')
end
def icon
2017-10-02 08:40:32 +00:00
'status_warning'
end
def group
'success_with_warnings'
end
def self.matches?(subject, user)
subject.success? && subject.has_warnings?
end
end
end
end
end