Skip to content

Commit

Permalink
fix: turn of debug (#16)
Browse files Browse the repository at this point in the history
* feat: add labels output

* update test workflow

* set release to manual

* try this way

* update generateFiles.js

* fix: turn off debug
  • Loading branch information
lisadean authored Aug 19, 2021
1 parent f1ff94a commit 8439a00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,9 @@ const handlePullRequest = async () => {
...context.repo,
issue_number: number
});
debug(`currentLabels: ${JSON.stringify(currentLabels, null, 2)}`);
core.setOutput('labels', getLabelNames(currentLabels).toString());
const actionOutputLabels = getLabelNames(currentLabels).toString();
info(`Action output -- labels: ${actionOutputLabels}`);
core.setOutput('labels', actionOutputLabels);
};

const run = async () => {
Expand Down

0 comments on commit 8439a00

Please sign in to comment.