Skip to content

Commit

Permalink
Merge pull request #560 from launchableinc/fix-commit-collector-git-s…
Browse files Browse the repository at this point in the history
…tatus

change git status name to allign jgit.diff.DiffEntity.ChangeType
  • Loading branch information
Konboi authored May 16, 2023
2 parents 3f4d979 + c2692ed commit f849d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launchable/utils/commit_ingester.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _convert_git_commit(commit: GitCommit) -> Dict:
cf = dict()
cf['linesAdded'] = changed_file.added
cf['linesDeleted'] = changed_file.deleted
cf['status'] = 'M'
cf['status'] = 'MODIFY'
cf['path'] = changed_file.path
cf['pathTo'] = changed_file.path
changed_files.append(cf)
Expand Down

0 comments on commit f849d38

Please sign in to comment.