Skip to content

Commit

Permalink
Cannot add Reviewer to PR once github-actions is added as a reviewer (#…
Browse files Browse the repository at this point in the history
…6564)

Fixes #6443
  • Loading branch information
alexr00 authored Dec 18, 2024
1 parent 9f6b715 commit 20c6ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/pullRequestModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ export class PullRequestModel extends IssueModel<PullRequest> implements IPullRe
input: {
pullRequestId: this.graphNodeId,
teamIds: teamReviewers,
userIds: reviewers.filter(r => !r.startsWith('BOT')),
userIds: reviewers.filter(r => r && !r.startsWith('BOT')),
},
},
});
Expand Down

0 comments on commit 20c6ea9

Please sign in to comment.