Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
df3a0f26
Commit
df3a0f26
authored
Jun 26, 2019
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MWPS system notes shows inconsistent sha
Fix the system note service
parent
19dc1105
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
5 deletions
+13
-5
app/services/auto_merge/merge_when_pipeline_succeeds_service.rb
...rvices/auto_merge/merge_when_pipeline_succeeds_service.rb
+1
-1
app/services/system_note_service.rb
app/services/system_note_service.rb
+2
-2
spec/services/auto_merge/base_service_spec.rb
spec/services/auto_merge/base_service_spec.rb
+5
-0
spec/services/auto_merge/merge_when_pipeline_succeeds_service_spec.rb
...s/auto_merge/merge_when_pipeline_succeeds_service_spec.rb
+4
-1
spec/services/system_note_service_spec.rb
spec/services/system_note_service_spec.rb
+1
-1
No files found.
app/services/auto_merge/merge_when_pipeline_succeeds_service.rb
View file @
df3a0f26
...
...
@@ -5,7 +5,7 @@ module AutoMerge
def
execute
(
merge_request
)
super
do
if
merge_request
.
saved_change_to_auto_merge_enabled?
SystemNoteService
.
merge_when_pipeline_succeeds
(
merge_request
,
project
,
current_user
,
merge_request
.
diff_head_commit
)
SystemNoteService
.
merge_when_pipeline_succeeds
(
merge_request
,
project
,
current_user
,
merge_request
.
actual_head_pipeline
.
sha
)
end
end
end
...
...
app/services/system_note_service.rb
View file @
df3a0f26
...
...
@@ -221,8 +221,8 @@ module SystemNoteService
end
# Called when 'merge when pipeline succeeds' is executed
def
merge_when_pipeline_succeeds
(
noteable
,
project
,
author
,
last_commit
)
body
=
"enabled an automatic merge when the pipeline for
#{
last_commit
.
to_reference
(
project
)
}
succeeds"
def
merge_when_pipeline_succeeds
(
noteable
,
project
,
author
,
sha
)
body
=
"enabled an automatic merge when the pipeline for
#{
sha
}
succeeds"
create_note
(
NoteSummary
.
new
(
noteable
,
project
,
author
,
body
,
action:
'merge'
))
end
...
...
spec/services/auto_merge/base_service_spec.rb
View file @
df3a0f26
...
...
@@ -59,6 +59,11 @@ describe AutoMerge::BaseService do
context
'when strategy is merge when pipeline succeeds'
do
let
(
:service
)
{
AutoMerge
::
MergeWhenPipelineSucceedsService
.
new
(
project
,
user
)
}
before
do
pipeline
=
build
(
:ci_pipeline
)
allow
(
merge_request
).
to
receive
(
:actual_head_pipeline
)
{
pipeline
}
end
it
'sets the auto merge strategy'
do
subject
...
...
spec/services/auto_merge/merge_when_pipeline_succeeds_service_spec.rb
View file @
df3a0f26
...
...
@@ -64,8 +64,11 @@ describe AutoMerge::MergeWhenPipelineSucceedsService do
end
it
'creates a system note'
do
pipeline
=
build
(
:ci_pipeline
)
allow
(
merge_request
).
to
receive
(
:actual_head_pipeline
)
{
pipeline
}
note
=
merge_request
.
notes
.
last
expect
(
note
.
note
).
to
match
%r{enabled an automatic merge when the pipeline for (
\w
+/
\w
+@)?
\h
{8}}
expect
(
note
.
note
).
to
match
"enabled an automatic merge when the pipeline for
#{
pipeline
.
sha
}
"
end
end
...
...
spec/services/system_note_service_spec.rb
View file @
df3a0f26
...
...
@@ -332,7 +332,7 @@ describe SystemNoteService do
create
(
:merge_request
,
source_project:
project
,
target_project:
project
)
end
subject
{
described_class
.
merge_when_pipeline_succeeds
(
noteable
,
project
,
author
,
noteable
.
diff_head_commit
)
}
subject
{
described_class
.
merge_when_pipeline_succeeds
(
noteable
,
project
,
author
,
pipeline
.
sha
)
}
it_behaves_like
'a system note'
do
let
(
:action
)
{
'merge'
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment