Commit 8f0f6137 authored by Albert Salim's avatar Albert Salim

Merge branch 'manojmj-master-patch-66037' into 'master'

Fix wording in Danger when warning about number of lines changed

See merge request gitlab-org/gitlab!54663
parents a2089cc4 21e0226d
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# end # end
if git.lines_of_code > 2_000 if git.lines_of_code > 2_000
warn "This merge request is definitely too big (more than #{git.lines_of_code} lines changed), please split it into multiple merge requests." warn "This merge request is definitely too big (#{git.lines_of_code} lines changed), please split it into multiple merge requests."
elsif git.lines_of_code > 500 elsif git.lines_of_code > 500
warn "This merge request is quite big (more than #{git.lines_of_code} lines changed), please consider splitting it into multiple merge requests." warn "This merge request is quite big (#{git.lines_of_code} lines changed), please consider splitting it into multiple merge requests."
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment