From cca9694441f25116fcb5d5f16757a6e43e5c4375 Mon Sep 17 00:00:00 2001 From: pratikmallya Date: Sun, 2 Feb 2020 21:22:12 -0800 Subject: [PATCH] npm run build --- lib/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/main.js b/lib/main.js index 4f92662a..f8443eca 100644 --- a/lib/main.js +++ b/lib/main.js @@ -28,13 +28,13 @@ function run() { const client = new github.GitHub(core.getInput('githubToken')); // get all files changed in the PR const paths = yield getChangedFiles_1.getChangedFiles(github.context, client); - core.debug(`Obtained paths: ${paths}`); + core.info(`Obtained paths: ${paths}`); // files -> set of codeowners for the files const owners = yield getCodeOwners_1.getCodeOwnersFromPaths(paths); - core.debug(`Obtained owners for paths: ${owners}`); + core.info(`Obtained owners for paths: ${owners}`); // set of codeowners -> set of labels const labels = yield getLabelsFromOwners_1.getLabelsFromOwners(owners); - core.debug(`Obtained labels for change: ${labels}`); + core.info(`Obtained labels for change: ${labels}`); // apply the set of labels to the PR yield applyLabels_1.applyLabels(github.context, client, labels); }