mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Gitlab Node): Author name and email not being set (#11077)
This commit is contained in:
parent
0eee5dfd59
commit
fce1233b58
|
@ -1606,7 +1606,13 @@ export class Gitlab implements INodeType {
|
||||||
body.commit_message = this.getNodeParameter('commitMessage', i) as string;
|
body.commit_message = this.getNodeParameter('commitMessage', i) as string;
|
||||||
|
|
||||||
if (additionalParameters.author) {
|
if (additionalParameters.author) {
|
||||||
body.author = additionalParameters.author;
|
const author = additionalParameters.author as IDataObject;
|
||||||
|
if (author.name) {
|
||||||
|
body.author_name = author.name;
|
||||||
|
}
|
||||||
|
if (author.email) {
|
||||||
|
body.author_email = author.email;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
additionalParameters.branchStart &&
|
additionalParameters.branchStart &&
|
||||||
|
@ -1648,7 +1654,13 @@ export class Gitlab implements INodeType {
|
||||||
{},
|
{},
|
||||||
) as IDataObject;
|
) as IDataObject;
|
||||||
if (additionalParameters.author) {
|
if (additionalParameters.author) {
|
||||||
body.author = additionalParameters.author;
|
const author = additionalParameters.author as IDataObject;
|
||||||
|
if (author.name) {
|
||||||
|
body.author_name = author.name;
|
||||||
|
}
|
||||||
|
if (author.email) {
|
||||||
|
body.author_email = author.email;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
body.branch = this.getNodeParameter('branch', i) as string;
|
body.branch = this.getNodeParameter('branch', i) as string;
|
||||||
body.commit_message = this.getNodeParameter('commitMessage', i) as string;
|
body.commit_message = this.getNodeParameter('commitMessage', i) as string;
|
||||||
|
|
Loading…
Reference in a new issue