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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-03 00:07:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-03 00:07:52 +0300
commit07f40d55abd429da44fccdd95185a5ee838132d1 (patch)
treeb306d6d4991bd76ff3682e10f0ea92953e44eae2 /rubocop
parent86461e8c72db13d6d334fd107d38aa1b021d030e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/check_graceful_task.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/rubocop/check_graceful_task.rb b/rubocop/check_graceful_task.rb
index 7ae74e79e38..724f7fa6963 100644
--- a/rubocop/check_graceful_task.rb
+++ b/rubocop/check_graceful_task.rb
@@ -66,7 +66,13 @@ module RuboCop
end
channel = 'f_rubocop'
- message = ":warning: `#{job_name}` passed :green: but contained silenced offenses. See #{job_url}"
+ message = format(
+ ':warning: `%{job_name}` passed :green: but contained <%{job_url}|silenced offenses>. ' \
+ 'See <%{docs_link}|docs>.',
+ docs_link: 'https://docs.gitlab.com/ee/development/contributing/style_guides.html#silenced-offenses',
+ job_name: job_name,
+ job_url: job_url)
+
emoji = 'rubocop'
user_name = 'GitLab Bot'