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 'tooling/danger/outdated_todo.rb')
-rw-r--r--tooling/danger/outdated_todo.rb13
1 files changed, 10 insertions, 3 deletions
diff --git a/tooling/danger/outdated_todo.rb b/tooling/danger/outdated_todo.rb
index a5f5cc897a9..5ae0561010c 100644
--- a/tooling/danger/outdated_todo.rb
+++ b/tooling/danger/outdated_todo.rb
@@ -8,10 +8,11 @@ module Tooling
spec/support/rspec_order_todo.yml
].freeze
- def initialize(filenames, context:, todos: TODOS_GLOBS)
+ def initialize(filenames, context:, todos: TODOS_GLOBS, allow_fail: false)
@filenames = filenames
@context = context
@todos_globs = todos
+ @allow_fail = allow_fail
end
def check
@@ -22,17 +23,23 @@ module Tooling
private
- attr_reader :filenames, :context
+ attr_reader :filenames, :context, :allow_fail
def check_filename(filename)
mentions = all_mentions_for(filename)
return if mentions.empty?
- context.warn <<~MESSAGE
+ message = <<~MESSAGE
`#{filename}` was removed but is mentioned in:
#{mentions.join("\n")}
MESSAGE
+
+ if allow_fail
+ context.fail message
+ else
+ context.warn message
+ end
end
def all_mentions_for(filename)