ci: add review roulette danger plugin

This commit is contained in:
Peter Leitzen 2022-11-22 20:51:28 +01:00
parent 19893312b9
commit 5c4e5ac76e
No known key found for this signature in database
GPG Key ID: 97DE9D2E708A225E
2 changed files with 10 additions and 0 deletions

View File

@ -20,6 +20,8 @@ include:
- template: Security/SAST.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
- project: 'gitlab-org/quality/pipeline-common'
file: '/ci/danger-review.yml' # danger-review job below
# From: https://docs.gitlab.com/ee/ci/caching/#cache-go-dependencies
.go-cache:

8
Dangerfile Normal file
View File

@ -0,0 +1,8 @@
# frozen_string_literal: trueo
require 'gitlab-dangerfiles'
Gitlab::Dangerfiles.for_project(self, 'gitlab-cli') do |dangerfiles|
dangerfiles.import_plugins
dangerfiles.import_dangerfiles(only: %w[simple_roulette])
end