debian-mirror-gitlab/lib/gitlab/ci/config/header/spec.rb
2023-05-27 22:25:52 +05:30

24 lines
647 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Header
class Spec < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Configurable
ALLOWED_KEYS = %i[inputs].freeze
validations do
validates :config, type: Hash, allowed_keys: ALLOWED_KEYS
end
entry :inputs, ::Gitlab::Config::Entry::ComposableHash,
description: 'Allowed input parameters used for interpolation.',
inherit: false,
metadata: { composable_class: ::Gitlab::Ci::Config::Header::Input }
end
end
end
end
end