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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-07 00:08:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-07 00:08:47 +0300
commitd650b4f4c4a20f9d1801a0dc69bdc3e106a18e11 (patch)
treeafb5832443981e94d49962d84631d3d2480aa66f /app/models/ci
parent9213b5a0fd66f3b466047bf85f90ad056c239f18 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/ci')
-rw-r--r--app/models/ci/runner_machine.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/ci/runner_machine.rb b/app/models/ci/runner_machine.rb
index af11db4cf25..89b426a97fc 100644
--- a/app/models/ci/runner_machine.rb
+++ b/app/models/ci/runner_machine.rb
@@ -13,5 +13,6 @@ module Ci
validates :platform, length: { maximum: 255 }
validates :architecture, length: { maximum: 255 }
validates :ip_address, length: { maximum: 1024 }
+ validates :config, json_schema: { filename: 'ci_runner_config' }
end
end