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
path: root/danger
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2019-11-19 23:12:46 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2019-11-19 23:12:46 +0300
commit32350bab997b752b81b6588817fc4204f90eb948 (patch)
treed6a795027f9d8dde020160607d16942cdf2843bd /danger
parent78f16381648b2d1857d01c39eeef25035599cffb (diff)
Danger bot: use backticks to suppress maintainer mentions
Diffstat (limited to 'danger')
-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