summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/core/skipped.rb
blob: e791341b7e0cd280bfb9265b36809cc30f88bdf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab::Ci
  module Status
    module Core
      class Skipped < Core::Base
        def label
          'skipped'
        end

        def icon
          'icon_status_skipped'
        end
      end
    end
  end
end