From 62fdca610c34e73ccff236dda1db24329215c0da Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Fri, 28 Feb 2020 08:54:30 -0500 Subject: [PATCH] Remove log result --- dist/index.js | 1 - src/main.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 72f5e2e..68a5dc5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9179,7 +9179,6 @@ async function main() { const script = Object(core.getInput)('script', { required: true }); // Using property/value shorthand on `require` (e.g. `{require}`) causes compilatin errors. const result = await callAsyncFunction({ require: __webpack_require__(875), github, context: lib_github.context }, script); - console.log('test result', result); let encoding = Object(core.getInput)('result-encoding'); encoding = encoding ? encoding : 'json'; let output; diff --git a/src/main.ts b/src/main.ts index f9ce7fe..89bf9e4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -22,7 +22,6 @@ async function main() { {require: require, github, context}, script ) - console.log('test result', result) let encoding = core.getInput('result-encoding') encoding = encoding ? encoding : 'json'