diff options
author | Robert Speicher <robert@gitlab.com> | 2016-08-17 20:19:11 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-08-17 20:19:11 +0000 |
commit | 3666f6987ea5a6f105c6fa146144f7310f0647a6 (patch) | |
tree | ef701a82e34503bf96f8876426276239360f50b0 /doc/workflow | |
parent | 7e6a177771a0dc148171e7a6b603b8bb9bfe5588 (diff) | |
parent | 2797cfbf604be698f5b0aaf7178a9aad78d2805b (diff) | |
download | gitlab-ce-3666f6987ea5a6f105c6fa146144f7310f0647a6.tar.gz |
Merge branch '2451-fix-mentions-in-issue-updates' into 'master'
Send notification emails when users are newly mentioned in issue or MR edits
## What does this MR do?
Introduces "new mention in issue" and "new mention in MR" email notifications. Editing a Mentionable title or description and adding a mention to a user who was not previously mentioned will now send them a notification email, following usual permissions for doing so.
## Why was this MR needed?
Issues & MRs may be edited to include mentions to new people. We don't currently send out email notifications of these edits to anyone, although they do create TODOs. This brings email notifications into parity with TODOs.
## What are the relevant issue numbers?
Closes #2451
See merge request !5800
Diffstat (limited to 'doc/workflow')
-rw-r--r-- | doc/workflow/notifications.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/workflow/notifications.md b/doc/workflow/notifications.md index b4a9c2f3d3e..1b49a5c385f 100644 --- a/doc/workflow/notifications.md +++ b/doc/workflow/notifications.md @@ -67,7 +67,7 @@ In all of the below cases, the notification will be sent to: - Participants: - the author and assignee of the issue/merge request - authors of comments on the issue/merge request - - anyone mentioned by `@username` in the issue/merge request description + - anyone mentioned by `@username` in the issue/merge request title or description - anyone mentioned by `@username` in any of the comments on the issue/merge request ...with notification level "Participating" or higher @@ -89,6 +89,11 @@ In all of the below cases, the notification will be sent to: | Merge merge request | | | New comment | The above, plus anyone mentioned by `@username` in the comment, with notification level "Mention" or higher | + +In addition, if the title or description of an Issue or Merge Request is +changed, notifications will be sent to any **new** mentions by `@username` as +if they had been mentioned in the original text. + You won't receive notifications for Issues, Merge Requests or Milestones created by yourself. You will only receive automatic notifications when somebody else comments or adds changes to the ones that you've created or |