fix: do not post to slack during dry runs

This commit is contained in:
Samuel Attard 2024-08-01 15:36:01 -07:00
Родитель 6e188bbee2
Коммит 581aec383f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1B5816524359D045
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -313,7 +313,8 @@ async function main() {
}" organization and does not match name found on GitHub`,
chalk.yellow(githubUserInfo.data.login),
);
return await builder.send();
if (!IS_DRY_RUN) await builder.send();
return;
}
userId = githubUserInfo.data.id;
@ -326,7 +327,8 @@ async function main() {
`User not in "${config.organization}" organization and could not be found on GitHub`,
chalk.cyan(userNeedingInvite),
);
return await builder.send();
if (!IS_DRY_RUN) await builder.send();
return;
}
builder.addContext(