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/tasks/gitlab/ci_secure_files/check.rake')
-rw-r--r--lib/tasks/gitlab/ci_secure_files/check.rake10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/tasks/gitlab/ci_secure_files/check.rake b/lib/tasks/gitlab/ci_secure_files/check.rake
new file mode 100644
index 00000000000..2c538a9365c
--- /dev/null
+++ b/lib/tasks/gitlab/ci_secure_files/check.rake
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+namespace :gitlab do
+ namespace :ci_secure_files do
+ desc 'GitLab | CI Secure Files | Check integrity of uploaded Secure Files'
+ task check: :environment do
+ Gitlab::Verify::RakeTask.run!(Gitlab::Verify::CiSecureFiles)
+ end
+ end
+end