summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/seed/context.rb
blob: 6194a78f682dde6113746a48e9ece6a866376a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Context
          attr_reader :pipeline, :root_variables

          def initialize(pipeline, root_variables: [])
            @pipeline = pipeline
            @root_variables = root_variables
          end
        end
      end
    end
  end
end