Skip to content

Commit

Permalink
fix(backend): missing git author in pulls
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed Nov 6, 2024
1 parent bbd9839 commit 15afbe8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/src/repo-manager/repo-manager.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -985,6 +985,7 @@ class RepoManager {
fs,
http,
dir: repoDir,
author: { name: this.repoManagerSettings.gitAuthor, email: this.repoManagerSettings.gitEmail },
onAuth: () => ({
username: this.repoManagerSettings.gitUsername,
password: this.repoManagerSettings.gitlabToken,
Expand Down Expand Up @@ -1228,6 +1229,7 @@ class RepoManager {
fs,
http,
dir: repoDir,
author: { name: this.repoManagerSettings.gitAuthor, email: this.repoManagerSettings.gitEmail },
onAuth: () => ({
username: this.repoManagerSettings.gitUsername,
password: this.repoManagerSettings.gitlabToken,
Expand Down

0 comments on commit 15afbe8

Please sign in to comment.