chore(git): Need author and commiter for doing git merge

This commit is contained in:
Himanshu Mishra
2020-12-23 00:34:12 +01:00
parent 9ca586e579
commit cb28e1a6a0
2 changed files with 17 additions and 1 deletions
+5
View File
@@ -168,6 +168,11 @@ export const checkoutGitRepository = async (
dir: repositoryTmpPath,
headBranch: `origin/${currentBranchName}`,
baseBranch: currentBranchName || undefined,
author: { name: 'Backstage TechDocs', email: 'techdocs@backstage.io' },
committer: {
name: 'Backstage TechDocs',
email: 'techdocs@backstage.io',
},
});
return repositoryTmpPath;
} catch (e) {