Skip to content
Open
Show file tree
Hide file tree
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 .github/workflows/claude-pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ jobs:
owner, repo, issue_number: prNumber, per_page: 100
});

const VERDICT_RE = /(?:^|\n)REVIEW_RESULT: (PASS|FAIL)\b/;
const claudeComments = comments.data.filter(c =>
c.user?.login === 'claude[bot]' && c.body?.includes('REVIEW_RESULT:')
c.user?.login === 'claude[bot]' && VERDICT_RE.test(c.body || '')
);
const claudeComment = claudeComments[claudeComments.length - 1];

Expand Down Expand Up @@ -431,8 +432,9 @@ jobs:
per_page: 100
});

const VERDICT_RE = /(?:^|\n)REVIEW_RESULT: (PASS|FAIL)\b/;
const claudeComments = comments.data.filter(c =>
c.user?.login === 'claude[bot]' && c.body?.includes('REVIEW_RESULT:')
c.user?.login === 'claude[bot]' && VERDICT_RE.test(c.body || '')
);
const claudeComment = claudeComments[claudeComments.length - 1];

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dependency-security-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,9 @@ jobs:
issue_number: ${{ github.event.pull_request.number }},
});

const VERDICT_RE = /(?:^|\n)DEPENDENCY_REVIEW: (PASS|BLOCK|NEEDS_ATTENTION)\b/;
const claudeComments = comments.filter(c =>
c.user?.login === 'claude[bot]' && c.body?.includes('DEPENDENCY_REVIEW:')
c.user?.login === 'claude[bot]' && VERDICT_RE.test(c.body || '')
);
const claudeComment = claudeComments[claudeComments.length - 1];

Expand Down
2 changes: 1 addition & 1 deletion docs/master-of-bots.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Master of Bots

Master Of Bots allows you to simulate big amounts (tested with up to 100 bots from a single machine) of users with real wallets for debug purposes.
Master Of Bots allows you to simulate large numbers (tested with up to 100 bots from a single machine) of users with real wallets for debug purposes.

Proceed to https://github.com/decentraland/livekit-bots/tree/explorer-alpha and follow the instructions.
Loading