Skip to content

Commit

Permalink
fix chaoss#1033: some merge commits were not skipped in GitLab
Browse files Browse the repository at this point in the history
  • Loading branch information
chengshiwen committed Feb 26, 2022
1 parent b626512 commit 896a781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grimoire_elk/enriched/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def get_rich_item(self, item):
lines_added = 0
lines_removed = 0
for cfile in commit["files"]:
if 'action' not in cfile:
if 'action' not in cfile or cfile['action'] in ['AM', 'MA', 'MM', 'MR', 'RM']:
# merges are not counted
continue
eitem["files"] += 1
Expand Down

0 comments on commit 896a781

Please sign in to comment.