debian-mirror-gitlab/lib/gitlab/ci/status/build/failed_allowed.rb
2018-03-17 18:26:18 +05:30

25 lines
462 B
Ruby

module Gitlab
module Ci
module Status
module Build
class FailedAllowed < Status::Extended
def label
'failed (allowed to fail)'
end
def icon
'status_warning'
end
def group
'failed_with_warnings'
end
def self.matches?(build, user)
build.failed? && build.allow_failure?
end
end
end
end
end
end