From eab667d56d3e9ff4d48d30c4f618543f51c4fb75 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Tue, 28 Jan 2025 17:50:19 +0900 Subject: [PATCH] chore: remove data display --- 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 95f42fa..145569f 100644 --- a/src/github/utils/config.ts +++ b/src/github/utils/config.ts @@ -188,7 +188,7 @@ async function download({ context, repository, owner }: { context: GitHubContext } export function parseYaml(data: null | string) { - console.log("Will attempt to parse YAML data:", data); + console.log("Will attempt to parse YAML data..."); try { if (data) { const parsedData = YAML.load(data);