This repository was archived by the owner on Jul 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo
33
44# It uses Github actions to listen for comments on issues and pull requests and
5- # if the comment contains /ping-for-attention or /pfa it will add a comment pinging
6- # the code-owners who have not yet reviewed the pull request
5+ # if the comment contains /please-take-a-look or /ptal it will add a comment pinging
6+ # the code-owners who are reviewers for PR
77
88name : Please take a Look
99
4444 const reviewersWhoHaveNotReviewed = reviewers.filter(reviewer => !reviewersWhoHaveReviewed.includes(reviewer));
4545
4646 if (reviewersWhoHaveNotReviewed.length > 0) {
47- const comment = reviewersWhoHaveNotReviewed.map(reviewer => `@${reviewer}`).join(' ');
47+ const comment = reviewersWhoHaveNotReviewed.filter(reviewer => reviewer !== 'asyncapi-bot-eve' ). map(reviewer => `@${reviewer}`).join(' ');
4848 await github.rest.issues.createComment({
4949 issue_number: context.issue.number,
5050 owner: context.repo.owner,
You can’t perform that action at this time.
0 commit comments