From 32ebc90995769cf2837505d5fc5b357a3aefc552 Mon Sep 17 00:00:00 2001 From: Dario Dorando Date: Wed, 6 Sep 2023 15:57:37 +0300 Subject: [PATCH] rebuild --- dist/index.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/dist/index.js b/dist/index.js index fb785bc..bd860ab 100644 --- a/dist/index.js +++ b/dist/index.js @@ -500,11 +500,6 @@ function createPullRequest(inputs) { } } catch (error) { - if (error instanceof Error) { - core.error(error); - if (error.stack) - core.error(error.stack); - } core.setFailed(utils.getErrorMessage(error)); } finally { @@ -1247,11 +1242,6 @@ function run() { yield (0, create_pull_request_1.createPullRequest)(inputs); } catch (error) { - if (error instanceof Error) { - core.error(error); - if (error.stack) - core.error(error.stack); - } core.setFailed(utils.getErrorMessage(error)); } }); @@ -1425,8 +1415,6 @@ function fileExistsSync(path) { if (!path) { throw new Error("Arg 'path' must not be empty"); } - core.info(path); - core.info(fs.realpathSync(path)); let stats; try { stats = fs.statSync(fs.realpathSync(path));