gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/global.rb

14 lines
204 B
Ruby
Raw Normal View History

module Gitlab
module Ci
class Config
module Node
class Global < Entry
include Configurable
add_node :before_script, Script
end
end
end
end
end