diff options
Diffstat (limited to 'danger/gitaly/Dangerfile')
-rw-r--r-- | danger/gitaly/Dangerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/danger/gitaly/Dangerfile b/danger/gitaly/Dangerfile index 59e55845c83..d7ff8d6446a 100644 --- a/danger/gitaly/Dangerfile +++ b/danger/gitaly/Dangerfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -TEMPLATE_MESSAGE = <<~MSG +GITALY_COORDINATION_MESSAGE = <<~MSG This merge request requires coordination with gitaly deployments. Before merging this merge request we should verify that gitaly running in production already implements the new gRPC interface @@ -18,5 +18,5 @@ changed_lines = helper.changed_lines('Gemfile.lock') if changed_lines.any? { |line| line =~ /^\+\s+gitaly \(/ } warn 'Changing gitaly gem can cause a multi-version incompatibility incident' - markdown(TEMPLATE_MESSAGE) + markdown(GITALY_COORDINATION_MESSAGE) end |