Set explicit committer for new commits

This commit is contained in:
Rene Pfeuffer
2020-02-14 10:42:59 +01:00
parent 87a3f882bc
commit db19da7b46

View File

@@ -243,6 +243,7 @@ class AbstractGitCommand
if (!status.isClean() || isInMerge()) {
return of(clone.commit()
.setAuthor(authorToUse.getName(), authorToUse.getMail())
.setCommitter("SCM-Manager", "noreply@scm-manager.org")
.setMessage(message)
.call());
} else {