Select Git revision
Forked from
GitLab.org / GitLab FOSS
3823 commits behind the upstream repository.
-
Shinya Maeda authoredShinya Maeda authored
skipped.rb 337 B
module Gitlab
module Ci
module Status
class Skipped < Status::Core
def text
'skipped'
end
def label
'skipped'
end
def icon
'icon_status_skipped'
end
def favicon
'favicon_status_skipped'
end
end
end
end
end