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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
6b739027
Commit
6b739027
authored
Sep 25, 2015
by
Ben Boeckel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge_request: add work_in_progress to MR hooks
parent
38039221
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
3 deletions
+18
-3
CHANGELOG
CHANGELOG
+1
-0
app/models/merge_request.rb
app/models/merge_request.rb
+2
-1
doc/web_hooks/web_hooks.md
doc/web_hooks/web_hooks.md
+4
-2
spec/models/merge_request_spec.rb
spec/models/merge_request_spec.rb
+11
-0
No files found.
CHANGELOG
View file @
6b739027
...
...
@@ -53,6 +53,7 @@ v 8.0.3
- Fix URL shown in Slack notifications
- Fix bug where projects would appear to be stuck in the forked import state (Stan Hu)
- Fix Error 500 in creating merge requests with > 1000 diffs (Stan Hu)
- Add work_in_progress key to MR web hooks (Ben Boeckel)
v 8.0.2
- Fix default avatar not rendering in network graph (Stan Hu)
...
...
app/models/merge_request.rb
View file @
6b739027
...
...
@@ -275,7 +275,8 @@ class MergeRequest < ActiveRecord::Base
attrs
=
{
source:
source_project
.
hook_attrs
,
target:
target_project
.
hook_attrs
,
last_commit:
nil
last_commit:
nil
,
work_in_progress:
work_in_progress?
}
unless
last_commit
.
nil?
...
...
doc/web_hooks/web_hooks.md
View file @
6b739027
...
...
@@ -314,7 +314,8 @@ X-Gitlab-Event: Note Hook
"name"
:
"John Smith"
,
"email"
:
"john@example.com"
}
}
},
"work_in_progress"
:
false
}
}
```
...
...
@@ -500,6 +501,7 @@ X-Gitlab-Event: Merge Request Hook
"email"
:
"gitlabdev@dv6700.(none)"
}
},
"work_in_progress"
:
false
,
"url"
:
"http://example.com/diaspora/merge_requests/1"
,
"action"
:
"open"
}
...
...
spec/models/merge_request_spec.rb
View file @
6b739027
...
...
@@ -165,6 +165,17 @@ describe MergeRequest do
end
end
describe
"#hook_attrs"
do
it
"has all the required keys"
do
attrs
=
subject
.
hook_attrs
attrs
=
attrs
.
to_h
expect
(
attrs
).
to
include
(
:source
)
expect
(
attrs
).
to
include
(
:target
)
expect
(
attrs
).
to
include
(
:last_commit
)
expect
(
attrs
).
to
include
(
:work_in_progress
)
end
end
it_behaves_like
'an editable mentionable'
do
subject
{
create
(
:merge_request
)
}
...
...
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