# frozen_string_literal: true module Gitlab module Ci class ProjectConfig class Bridge < Source def content return unless pipeline_source_bridge pipeline_source_bridge.yaml_for_downstream end def source :bridge_source end end end end end