debian-mirror-gitlab/lib/gitlab/ci/project_config/bridge.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
327 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# 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