fix: format

This commit is contained in:
Botond 2022-08-26 19:39:10 +02:00
parent 91cdd434b6
commit 01320f9748
3 changed files with 7 additions and 11 deletions

View File

@ -125,7 +125,7 @@ const run = async ({
head: TYPE_UPDATE_BRANCH,
title: 'Update types',
body: `Patches the frontend based on the [datanode changes](https://github.com/${apiRepoOwner}/${apiRepoName}/commit/${apiCommitHash}).`,
}
},
});
}
};

View File

@ -119,7 +119,7 @@ const run = async ({
.split('\n')
.filter((file) => file !== '');
console.log(frontendRepoOwner, frontendRepoName)
console.log(frontendRepoOwner, frontendRepoName);
if (unstagedFiles.length) {
launchGitWorkflow({

View File

@ -12,12 +12,8 @@ module.exports = async (url, { githubAuthToken, body }) => {
};
options.agent = new https.Agent(options);
return request(
url,
{
...options,
body,
}
);
}
return request(url, {
...options,
body,
});
};