Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Strokov <pstrokov@gitlab.com>2019-11-19 23:12:46 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2019-11-19 23:12:46 +0300
commitba4abcb75c7b70df662c6274df199fa261f32e11 (patch)
treed6a795027f9d8dde020160607d16942cdf2843bd
parent78f16381648b2d1857d01c39eeef25035599cffb (diff)
parent32350bab997b752b81b6588817fc4204f90eb948 (diff)
Merge branch 'jv-bot-suppress-mention' into 'master'
Danger bot: use backticks to suppress maintainer mentions See merge request gitlab-org/gitaly!1639
-rw-r--r--danger/assignees/Dangerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/danger/assignees/Dangerfile b/danger/assignees/Dangerfile
index 048c31b04..c1f79d01d 100644
--- a/danger/assignees/Dangerfile
+++ b/danger/assignees/Dangerfile
@@ -6,9 +6,9 @@ if gitlab.mr_json["assignees"].none?
case suggestions.size
when 0
when 1
- message "Suggested maintainer: @#{suggestions.first}"
+ message "Suggested maintainer: `@#{suggestions.first}`"
else
- message "Suggested maintainers: @#{suggestions.first}, and @#{suggestions.last}"
+ message "Suggested maintainers: `@#{suggestions.first}`, and `@#{suggestions.last}`"
end
end