Skip to content

Commit a78f4c5

Browse files
committed
fixup! refactor(github-actions): extract shared labeling functionality into base class
1 parent 7d50193 commit a78f4c5

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

github-actions/labeling/pull-request/lib/pull-request-labeling.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export class PullRequestLabeling extends Labeling {
4444
* Perform labeling based on the path of the files in the pull request.
4545
*/
4646
async pathBasedLabeling() {
47-
console.log(this.managedLabelsByPath);
4847
if (!this.managedLabelsByPath) {
4948
return;
5049
}
@@ -54,8 +53,6 @@ export class PullRequestLabeling extends Labeling {
5453
this.pullRequestFilePaths.length > 0 &&
5554
micromatch(this.pullRequestFilePaths, paths as string | string[]).length > 0
5655
) {
57-
console.log(label);
58-
console.log(this.labels);
5956
if (!this.labels.has(label)) {
6057
await this.addLabel(label);
6158
}

0 commit comments

Comments
 (0)