Commit b13e18da authored by Nick Thomas's avatar Nick Thomas

Merge branch 'danger-fixup' into 'master'

Danger: Allow fixup commits if squash enabled or MR is WIP

See merge request gitlab-org/gitlab-ce!32210
parents 6a0d160f 634e65e9
...@@ -88,9 +88,36 @@ def lint_commit(commit) # rubocop:disable Metrics/AbcSize ...@@ -88,9 +88,36 @@ def lint_commit(commit) # rubocop:disable Metrics/AbcSize
# We ignore revert commits as they are well structured by Git already # We ignore revert commits as they are well structured by Git already
return false if commit.message.start_with?('Revert "') return false if commit.message.start_with?('Revert "')
is_squash = gitlab.mr_json['squash']
is_wip = gitlab.mr_json['work_in_progress']
is_fixup = commit.message.start_with?('fixup!', 'squash!')
if is_fixup
# The MR is set to squash - Danger adds an informative notice
# The MR is not set to squash - Danger fails. if also WIP warn only, not error
if is_squash
return false
end
if is_wip
warn_commit(
commit,
'Squash or Fixup commits must be squashed before merge, or enable squash merge option'
)
else
fail_commit(
commit,
'Squash or Fixup commits must be squashed before merge, or enable squash merge option'
)
end
# Makes no sense to process other rules for fixup commits, they trigger just more noise
return false
end
# Fail if a suggestion commit is used and squash is not enabled # Fail if a suggestion commit is used and squash is not enabled
if commit.message.start_with?('Apply suggestion to') if commit.message.start_with?('Apply suggestion to')
if gitlab.mr_json['squash'] if is_squash
return false return false
else else
fail_commit( fail_commit(
......
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