fix: add missing 'await' prefix when calling async (#206)

This commit is contained in:
Charles Kerr 2021-06-17 00:29:29 -05:00 коммит произвёл GitHub
Родитель 77a9c288e0
Коммит 199fcaa1dc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -491,7 +491,7 @@ const probotHandler = async (robot: Application) => {
if (!cmd.startsWith(TROP_COMMAND_PREFIX)) return;
// Allow all users with push access to handle backports.
if (!isAuthorizedUser(context, comment.user.login)) {
if (!(await isAuthorizedUser(context, comment.user.login))) {
robot.log(
`@${comment.user.login} is not authorized to run PR backports - stopping`,
);

Просмотреть файл

@ -56,7 +56,7 @@ export const labelClosedPR = async (
if (change === PRChange.CLOSE) {
const targetLabel = PRStatus.TARGET + targetBranch;
if (labelUtils.labelExistsOnPR(context, pr.number, targetLabel)) {
if (await labelUtils.labelExistsOnPR(context, pr.number, targetLabel)) {
await labelUtils.removeLabel(context, pr.number, targetLabel);
}
}