Skip to content

Commit

Permalink
Log installation info for debugging (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyaus authored Aug 19, 2024
1 parent 30a0187 commit 9459e8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions review-reminder/ReviewReminder.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions review-reminder/ReviewReminder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ export class ReviewReminder {
per_page: 100,
});

for await (const { data: repositories } of it) {
for (const repository of repositories.repositories) {
for await (const response of it) {
console.log(`Processing GitHubApp installation ${response.data}`);
for (const repository of response.data.repositories) {
if (repository.archived) {
continue;
}
Expand Down

0 comments on commit 9459e8b

Please sign in to comment.