summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/while.rb
blob: 84d4352624d2344863455477eff70cce493753e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module Gitlab
  module Ci
    class Config
      module Node
        ##
        # Entry that represents a ref and trigger policy for the job.
        #
        class While < Entry
          include Validatable

          validations do
            include LegacyValidationHelpers

            validate :array_of_strings_or_regexps

            def array_of_strings_or_regexps
              unless validate_array_of_strings_or_regexps(config)
                errors.add(:config, 'should be an array of strings or regexps')
              end
            end
          end
        end
      end
    end
  end
end