debian-mirror-gitlab/lib/gitlab/ci/project_config/bridge.rb
2022-10-11 01:57:18 +05:30

19 lines
327 B
Ruby

# 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