summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/trigger.rb
blob: d8b31975088032c72a1e1b7661e4932b8e54c1bc (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 trigger policy for the job.
        #
        class Trigger < 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