Skip to content

Commit d288d35

Browse files
author
asyncapi-bot
committed
ci: update of files from global .github repo
1 parent 15188c1 commit d288d35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/please-take-a-look-command.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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

88
name: Please take a Look
99

@@ -44,7 +44,7 @@ jobs:
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,

0 commit comments

Comments
 (0)