From b094582283c2692ec11464ed999d8c91d8672e63 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Sat, 4 Jan 2025 23:17:10 +0900 Subject: [PATCH] chore: fixed typo in comment --- src/github/utils/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/utils/config.ts b/src/github/utils/config.ts index 4651ca4..92003a7 100644 --- a/src/github/utils/config.ts +++ b/src/github/utils/config.ts @@ -166,7 +166,7 @@ async function download({ context, repository, owner }: { context: GitHubContext console.log(`Configuration file found at ${owner}/${repository}/${filePath}`); return data as unknown as string; // this will be a string if media format is raw } catch (err) { - // In case of a missing config, do not log is as an error + // In case of a missing config, do not log it as an error if (err && typeof err === "object" && "status" in err && err.status === 404) { console.log(`No configuration file was found at ${owner}/${repository}/${filePath}`); } else {