debian-mirror-gitlab/lib/gitlab/ci/config/header/spec.rb
2023-06-20 00:43:36 +05:30

24 lines
635 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, 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