From 3667febec573a36efa26505b6a712b314242991a Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Fri, 24 Jul 2020 00:49:02 +0900 Subject: [PATCH] refactor: change message type from warning to info --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 77e8b3ccb..a18e1ecfe 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -53,7 +53,7 @@ export async function addCNAME(workDir: string, content: string): Promise } const filepath = path.join(workDir, 'CNAME'); if (fs.existsSync(filepath)) { - core.warning(`CNAME already exists, skip adding CNAME`); + core.info(`CNAME already exists, skip adding CNAME`); return; } fs.writeFileSync(filepath, content + '\n');