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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-21 12:55:54 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-21 13:04:36 +0300
commitbd3ae192bb62d522912281b5943073f6ad444fe4 (patch)
treeb2fbee25011f0c63071718d38f6612690c88ac57 /app/services/system_note_service.rb
parent01f238893aaf8f5aa24eec7e33edc479d4e1315d (diff)
Rename MWPS in system notes and related tests
Diffstat (limited to 'app/services/system_note_service.rb')
-rw-r--r--app/services/system_note_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index 1ce66d50368..925e4938784 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -135,7 +135,7 @@ module SystemNoteService
# Called when 'merge when build succeeds' is executed
def merge_when_build_succeeds(noteable, project, author, last_commit)
- body = "Enabled an automatic merge when the build for #{last_commit.to_reference(project)} succeeds"
+ body = "Enabled an automatic merge when the pipeline for #{last_commit.to_reference(project)} succeeds"
create_note(noteable: noteable, project: project, author: author, note: body)
end