mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
Update pullRequestReviewCommentHandler.ts
This commit is contained in:
parent
917494e154
commit
ab04bf6ec7
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ export async function handlePullRequestReviewCommentEvent(body: string) {
|
|||
return NextResponse.json({ message: 'action_ignored' });
|
||||
}
|
||||
|
||||
if (!comment.body.includes('@roomote') && comment.user.login !== 'roomote') {
|
||||
if (!comment.body.includes('@roomote') || comment.user.login === 'roomote') {
|
||||
return NextResponse.json({ message: 'no_roomote_mention' });
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue