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/ci/builds.rb')
-rw-r--r--spec/factories/ci/builds.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/factories/ci/builds.rb b/spec/factories/ci/builds.rb
index 26786aab12c..9403967aa0a 100644
--- a/spec/factories/ci/builds.rb
+++ b/spec/factories/ci/builds.rb
@@ -378,6 +378,21 @@ FactoryBot.define do
end
end
+ trait :release_options do
+ options do
+ {
+ only: 'tags',
+ script: ['make changelog | tee release_changelog.txt'],
+ release: {
+ name: 'Release $CI_COMMIT_SHA',
+ description: 'Created using the release-cli $EXTRA_DESCRIPTION',
+ tag_name: 'release-$CI_COMMIT_SHA',
+ ref: '$CI_COMMIT_SHA'
+ }
+ }
+ end
+ end
+
trait :no_options do
options { {} }
end
@@ -400,6 +415,14 @@ FactoryBot.define do
end
end
+ trait :secret_detection do
+ options do
+ {
+ artifacts: { reports: { secret_detection: 'gl-secret-detection-report.json' } }
+ }
+ end
+ end
+
trait :dependency_scanning do
options do
{