32 lines
629 B
Ruby
32 lines
629 B
Ruby
|
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
|
||
|
'passed'
|
||
|
end
|
||
|
|
||
|
def label
|
||
|
'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
|