Skip to content

Commit

Permalink
Fix the logic for final PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaslana committed Jun 12, 2024
1 parent 32ad29a commit 275098c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/github/communityPRs.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func FindCommunityPRs(cfg *config.Config, teamMembers map[string]bool, githubCli
continue
}
user := *pullRequest.User.Login
if !teamMembers[user] || !cfg.SkipUsersMap[user] {
if !teamMembers[user] && !cfg.SkipUsersMap[user] {
finalPRs = append(finalPRs, pullRequest)
}
}
Expand Down

0 comments on commit 275098c

Please sign in to comment.