Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmd/goose/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,10 @@ func (app *App) fetchTurnDataAsync(ctx context.Context, issues []*github.Issue,
}
}

// Check for newly blocked PRs after Turn data is applied
app.checkForNewlyBlockedPRs(ctx)
// Only check for newly blocked PRs if there were actual changes
if actualChanges > 0 {
app.checkForNewlyBlockedPRs(ctx)
}

// Update tray title and menu with final Turn data if menu is already initialized
app.setTrayTitle()
Expand Down
Loading