We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d50193 commit a78f4c5Copy full SHA for a78f4c5
1 file changed
github-actions/labeling/pull-request/lib/pull-request-labeling.ts
@@ -44,7 +44,6 @@ export class PullRequestLabeling extends Labeling {
44
* Perform labeling based on the path of the files in the pull request.
45
*/
46
async pathBasedLabeling() {
47
- console.log(this.managedLabelsByPath);
48
if (!this.managedLabelsByPath) {
49
return;
50
}
@@ -54,8 +53,6 @@ export class PullRequestLabeling extends Labeling {
54
53
this.pullRequestFilePaths.length > 0 &&
55
micromatch(this.pullRequestFilePaths, paths as string | string[]).length > 0
56
) {
57
- console.log(label);
58
- console.log(this.labels);
59
if (!this.labels.has(label)) {
60
await this.addLabel(label);
61
0 commit comments