debian-mirror-gitlab/lib/gitlab/ci/status/build/skipped.rb
2018-05-09 12:01:36 +05:30

21 lines
439 B
Ruby

module Gitlab
module Ci
module Status
module Build
class Skipped < Status::Extended
def illustration
{
image: 'illustrations/skipped-job_empty.svg',
size: 'svg-430',
title: _('This job has been skipped')
}
end
def self.matches?(build, user)
build.skipped?
end
end
end
end
end
end