Skip to content

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanspeck committed Jan 3, 2025
1 parent 44e7df1 commit a2f8cc2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/labeler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@ export const main = async (): Promise<void> => {
const labelsToAdd = labels.filter((label) => !prLabels.includes(label));
const extraPrLabels = prLabels.filter((label) => !labels.includes(label));

console.log(`PR labels: ${prLabels.join(', ')}`)

if (labelsToAdd.length) {
console.log(`Labels to add: ${labelsToAdd.join(', ')}`)
await addLabels(octokit, prNumber, labelsToAdd);
Expand Down

0 comments on commit a2f8cc2

Please sign in to comment.