diff --git a/.github/workflows/goalie-on-pr-review-or-response.yaml b/.github/workflows/goalie-on-pr-review-or-response.yaml index 664793ee59..9f4c6996e2 100644 --- a/.github/workflows/goalie-on-pr-review-or-response.yaml +++ b/.github/workflows/goalie-on-pr-review-or-response.yaml @@ -103,6 +103,8 @@ jobs: for (const file of changedFiles) { for (const [pattern, owners] of Object.entries(codeowners)) { + + console.log(file.filename, pattern); if (minimatch(file.filename, pattern)) { for (const owner of owners) { reviewers.add(owner);