Skip to content

Commit

Permalink
refactor: change message type from warning to info
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Jul 23, 2020
1 parent 8546b0c commit 3667feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function addCNAME(workDir: string, content: string): Promise<void>
}
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');
Expand Down

0 comments on commit 3667feb

Please sign in to comment.