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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2023-05-04 18:42:08 +0300
committerSarah German <sgerman@gitlab.com>2023-05-04 18:42:08 +0300
commit48f1ef1bb92631075fb928c993dc3c78a8dca7fe (patch)
tree7e3a6f8cef0de33d00b4bc2d0dc83bcf3f41c078 /Rakefile
parent940b4e3eb7f385c57e065122187875dfc1d3692b (diff)
Add danger_local Rake task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 815da1b1..ef2757f7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,7 +1,11 @@
# frozen_string_literal: true
-# All tasks in files placed in lib/tasks/ ending in .rake will be loaded
-# automatically
+require 'gitlab-dangerfiles'
+
+# Automatically load Rake tasks stored in lib/tasks/ in files ending in .rake
Rake.add_rakelib 'lib/tasks'
+# Load danger_local Rake task
+Gitlab::Dangerfiles.load_tasks
+
task default: [:clone_repositories, :generate_feature_flags]