2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2020-07-28 23:09:34 +05:30
def gitlab_danger
@gitlab_danger || = GitlabDanger . new ( helper . gitlab_helper )
end
2019-07-07 11:18:12 +05:30
docs_paths_to_review = helper . changes_by_category [ :docs ]
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
return if docs_paths_to_review . empty?
message 'This merge request adds or changes files that require a review ' \
'from the Technical Writing team.'
return unless gitlab_danger . ci?
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
markdown ( << ~ MARKDOWN )
## Documentation review
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
The following files require a review from a technical writer :
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
* #{docs_paths_to_review.map { |path| "`#{path}`" }.join("\n* ")}
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
The review does not need to block merging this merge request . See the :
2019-02-15 15:39:39 +05:30
2020-07-28 23:09:34 +05:30
- [ Technical Writers assignments ] ( https : / / about . gitlab . com / handbook / engineering / technical - writing / #designated-technical-writers) for the appropriate technical writer for this review.
- [ Documentation workflows ] ( https : / / docs . gitlab . com / ee / development / documentation / workflow . html ) for information on when to assign a merge request for review .
MARKDOWN
2018-11-20 20:47:30 +05:30
2020-07-28 23:09:34 +05:30
unless gitlab . mr_labels . include? ( 'documentation' )
gitlab . api . update_merge_request ( gitlab . mr_json [ 'project_id' ] ,
gitlab . mr_json [ 'iid' ] ,
labels : ( gitlab . mr_labels + [ 'documentation' ] ) . join ( ',' ) )
2018-11-20 20:47:30 +05:30
end