debian-mirror-gitlab/lib/gitlab/ci/config/entry/workflow.rb

29 lines
684 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Entry
class Workflow < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Configurable
ALLOWED_KEYS = %i[rules].freeze
validations do
validates :config, type: Hash
validates :config, allowed_keys: ALLOWED_KEYS
end
entry :rules, Entry::Rules,
description: 'List of evaluable Rules to determine Pipeline status.',
metadata: { allowed_when: %w[always never] }
2020-01-01 13:55:28 +05:30
def has_rules?
@config.try(:key?, :rules)
end
2019-12-26 22:10:19 +05:30
end
end
end
end
end