debian-mirror-gitlab/lib/gitlab/ci/status/build/failed_allowed.rb
2017-08-17 22:00:37 +05:30

25 lines
467 B
Ruby

module Gitlab
module Ci
module Status
module Build
class FailedAllowed < Status::Extended
def label
'failed (allowed to fail)'
end
def icon
'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