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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
ea25fbb8
Commit
ea25fbb8
authored
Jun 25, 2018
by
Mark Chao
Committed by
Sean McGivern
Jun 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Notify conflict only for opened/locked merge requests
parent
6938335c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
27 deletions
+52
-27
app/models/merge_request.rb
app/models/merge_request.rb
+5
-3
changelogs/unreleased/6598-notify-only-open-unmergeable-mr.yml
...elogs/unreleased/6598-notify-only-open-unmergeable-mr.yml
+5
-0
doc/workflow/notifications.md
doc/workflow/notifications.md
+1
-1
doc/workflow/todos.md
doc/workflow/todos.md
+1
-1
spec/models/merge_request_spec.rb
spec/models/merge_request_spec.rb
+40
-22
No files found.
app/models/merge_request.rb
View file @
ea25fbb8
...
...
@@ -129,9 +129,7 @@ class MergeRequest < ActiveRecord::Base
after_transition
unchecked: :cannot_be_merged
do
|
merge_request
,
transition
|
begin
# Merge request can become unmergeable due to many reasons.
# We only notify if it is due to conflict.
unless
merge_request
.
project
.
repository
.
can_be_merged?
(
merge_request
.
diff_head_sha
,
merge_request
.
target_branch
)
if
merge_request
.
notify_conflict?
NotificationService
.
new
.
merge_request_unmergeable
(
merge_request
)
TodoService
.
new
.
merge_request_became_unmergeable
(
merge_request
)
end
...
...
@@ -708,6 +706,10 @@ class MergeRequest < ActiveRecord::Base
should_remove_source_branch?
||
force_remove_source_branch?
end
def
notify_conflict?
(
opened?
||
locked?
)
&&
!
project
.
repository
.
can_be_merged?
(
diff_head_sha
,
target_branch
)
end
def
related_notes
# Fetch comments only from last 100 commits
commits_for_notes_limit
=
100
...
...
changelogs/unreleased/6598-notify-only-open-unmergeable-mr.yml
0 → 100644
View file @
ea25fbb8
---
title
:
Notify conflict for only open merge request
merge_request
:
20125
author
:
type
:
fixed
doc/workflow/notifications.md
View file @
ea25fbb8
...
...
@@ -111,7 +111,7 @@ by yourself (except when an issue is due). You will only receive automatic
notifications when somebody else comments or adds changes to the ones that
you've created or mentions you.
If a
merge request becomes unmergeable
, its author will be notified about the cause.
If a
n open merge request becomes unmergeable due to conflict
, its author will be notified about the cause.
If a user has also set the merge request to automatically merge once pipeline succeeds,
then that user will also be notified.
...
...
doc/workflow/todos.md
View file @
ea25fbb8
...
...
@@ -31,7 +31,7 @@ A Todo appears in your Todos dashboard when:
-
you are
`@mentioned`
in a comment on a commit,
-
a job in the CI pipeline running for your merge request failed, but this
job is not allowed to fail.
-
a
merge request becomes unmergeable
, and you are either:
-
a
n open merge request becomes unmergeable due to conflict
, and you are either:
-
the author, or
-
have set it to automatically merge once pipeline succeeds.
...
...
spec/models/merge_request_spec.rb
View file @
ea25fbb8
...
...
@@ -2134,8 +2134,7 @@ describe MergeRequest do
describe
'transition to cannot_be_merged'
do
let
(
:notification_service
)
{
double
(
:notification_service
)
}
let
(
:todo_service
)
{
double
(
:todo_service
)
}
subject
{
create
(
:merge_request
,
merge_status: :unchecked
)
}
subject
{
create
(
:merge_request
,
state
,
merge_status: :unchecked
)
}
before
do
allow
(
NotificationService
).
to
receive
(
:new
).
and_return
(
notification_service
)
...
...
@@ -2144,33 +2143,52 @@ describe MergeRequest do
allow
(
subject
.
project
.
repository
).
to
receive
(
:can_be_merged?
).
and_return
(
false
)
end
it
'notifies conflict, but does not notify again if rechecking still results in cannot_be_merged'
do
expect
(
notification_service
).
to
receive
(
:merge_request_unmergeable
).
with
(
subject
).
once
expect
(
todo_service
).
to
receive
(
:merge_request_became_unmergeable
).
with
(
subject
).
once
[
:opened
,
:locked
].
each
do
|
state
|
context
state
do
let
(
:state
)
{
state
}
subject
.
mark_as_unmergeable
subject
.
mark_as_unchecked
subject
.
mark_as_unmergeable
end
it
'notifies conflict, but does not notify again if rechecking still results in cannot_be_merged'
do
expect
(
notification_service
).
to
receive
(
:merge_request_unmergeable
).
with
(
subject
).
once
expect
(
todo_service
).
to
receive
(
:merge_request_became_unmergeable
).
with
(
subject
).
once
subject
.
mark_as_unmergeable
subject
.
mark_as_unchecked
subject
.
mark_as_unmergeable
end
it
'notifies conflict, whenever newly unmergeable'
do
expect
(
notification_service
).
to
receive
(
:merge_request_unmergeable
).
with
(
subject
).
twice
expect
(
todo_service
).
to
receive
(
:merge_request_became_unmergeable
).
with
(
subject
).
twice
subject
.
mark_as_unmergeable
subject
.
mark_as_unchecked
subject
.
mark_as_mergeable
subject
.
mark_as_unchecked
subject
.
mark_as_unmergeable
end
it
'does not notify whenever merge request is newly unmergeable due to other reasons'
do
allow
(
subject
.
project
.
repository
).
to
receive
(
:can_be_merged?
).
and_return
(
true
)
it
'notifies conflict, whenever newly unmergeable'
do
expect
(
notification_service
).
to
receive
(
:merge_request_unmergeable
).
with
(
subject
).
twice
expect
(
todo_service
).
to
receive
(
:merge_request_became_unmergeable
).
with
(
subject
).
twice
expect
(
notification_service
).
not_to
receive
(
:merge_request_unmergeable
)
expect
(
todo_service
).
not_to
receive
(
:merge_request_became_unmergeable
)
subject
.
mark_as_unmergeable
subject
.
mark_as_unchecked
subject
.
mark_as_mergeable
subject
.
mark_as_unchecked
subject
.
mark_as_unmergeable
subject
.
mark_as_unmergeable
end
end
end
it
'does not notify whenever merge request is newly unmergeable due to other reasons'
do
allow
(
subject
.
project
.
repository
).
to
receive
(
:can_be_merged?
).
and_return
(
true
)
[
:closed
,
:merged
].
each
do
|
state
|
let
(
:state
)
{
state
}
expect
(
notification_service
).
not_to
receive
(
:merge_request_unmergeable
)
expect
(
todo_service
).
not_to
receive
(
:merge_request_became_unmergeable
)
context
state
do
it
'does not notify'
do
expect
(
notification_service
).
not_to
receive
(
:merge_request_unmergeable
)
expect
(
todo_service
).
not_to
receive
(
:merge_request_became_unmergeable
)
subject
.
mark_as_unmergeable
subject
.
mark_as_unmergeable
end
end
end
end
...
...
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