debian-mirror-gitlab/lib/gitlab/ci/config/entry/except_policy.rb
2018-12-23 12:14:25 +05:30

17 lines
306 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents an only/except trigger policy for the job.
#
class ExceptPolicy < Policy
def self.default
end
end
end
end
end
end