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 'spec/factories/project_auto_devops.rb')
-rw-r--r--spec/factories/project_auto_devops.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/project_auto_devops.rb b/spec/factories/project_auto_devops.rb
index a59087cd7eb..189d097d5e6 100644
--- a/spec/factories/project_auto_devops.rb
+++ b/spec/factories/project_auto_devops.rb
@@ -4,5 +4,9 @@ FactoryBot.define do
enabled true
domain "example.com"
deploy_strategy :continuous
+
+ trait :manual do
+ deploy_strategy :manual
+ end
end
end