diff options
author | Robert Speicher <rspeicher@gmail.com> | 2019-04-04 13:26:01 +0200 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2019-04-04 13:26:01 +0200 |
commit | fee7036394c881aa5a1f9851b3531267104e8c1d (patch) | |
tree | 30f5c33f553ae3364d4945b6d5791c78877bb164 /lib | |
parent | 60a0ef21d385e1943f9e6a68adc9d7e04e8d69c8 (diff) | |
download | gitlab-ce-fee7036394c881aa5a1f9851b3531267104e8c1d.tar.gz |
Exempt release automation MRs from Danger rules
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/danger/helper.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/gitlab/danger/helper.rb b/lib/gitlab/danger/helper.rb index ac65cf74808..d347f3c13a4 100644 --- a/lib/gitlab/danger/helper.rb +++ b/lib/gitlab/danger/helper.rb @@ -7,6 +7,7 @@ require_relative 'teammate' module Gitlab module Danger module Helper + RELEASE_TOOLS_BOT = 'gitlab-release-tools-bot' ROULETTE_DATA_URL = URI.parse('https://about.gitlab.com/roulette.json').freeze # Returns a list of all files that have been added, modified or renamed. @@ -40,6 +41,10 @@ module Gitlab ENV['CI_PROJECT_NAME'] == 'gitlab-ee' || File.exist?('../../CHANGELOG-EE.md') end + def release_automation? + gitlab.mr_author == RELEASE_TOOLS_BOT + end + def project_name ee? ? 'gitlab-ee' : 'gitlab-ce' end |