Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/config/entry/cache.rb')
-rw-r--r--lib/gitlab/ci/config/entry/cache.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/ci/config/entry/cache.rb b/lib/gitlab/ci/config/entry/cache.rb
index b3ff74c14da..b3862b3f186 100644
--- a/lib/gitlab/ci/config/entry/cache.rb
+++ b/lib/gitlab/ci/config/entry/cache.rb
@@ -10,7 +10,7 @@ module Gitlab
include ::Gitlab::Config::Entry::Attributable
ALLOWED_KEYS = %i[key untracked paths when policy unprotect fallback_keys].freeze
- ALLOWED_POLICY = %w[pull-push push pull].freeze
+ ALLOWED_POLICY = /pull-push|push|pull|\$\w{1,255}*/
DEFAULT_POLICY = 'pull-push'
ALLOWED_WHEN = %w[on_success on_failure always].freeze
DEFAULT_WHEN = 'on_success'
@@ -18,9 +18,9 @@ module Gitlab
validations do
validates :config, type: Hash, allowed_keys: ALLOWED_KEYS
- validates :policy, type: String, allow_blank: true, inclusion: {
- in: ALLOWED_POLICY,
- message: "should be one of: #{ALLOWED_POLICY.join(', ')}"
+ validates :policy, type: String, allow_blank: true, format: {
+ with: ALLOWED_POLICY,
+ message: "should be a variable or one of: pull-push, push, pull"
}
with_options allow_nil: true do