Commit d288d35 asyncapi-bot
committed
1 parent 15188c1 commit d288d35 Copy full SHA for d288d35
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
# 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
3
3
4
4
# 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
7
7
8
8
name : Please take a Look
9
9
44
44
const reviewersWhoHaveNotReviewed = reviewers.filter(reviewer => !reviewersWhoHaveReviewed.includes(reviewer));
45
45
46
46
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(' ');
48
48
await github.rest.issues.createComment({
49
49
issue_number: context.issue.number,
50
50
owner: context.repo.owner,
You can’t perform that action at this time.
0 commit comments