diff --git a/src/action/github.ts b/src/action/github.ts index 41305617..d02721ad 100644 --- a/src/action/github.ts +++ b/src/action/github.ts @@ -16,7 +16,11 @@ export class Github implements Action { getLogger(): Logger { return { debug(message: string): void { - core.debug(message); + if (!core.isDebug()) { + return; + } + + core.info(message); }, info(message: string): void {