We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35b830 commit 6cdc24bCopy full SHA for 6cdc24b
.github/workflows/presubmit.yml
@@ -38,7 +38,11 @@ jobs:
38
github.event_name == 'issue_comment' &&
39
github.event.issue.pull_request != null &&
40
contains(github.event.comment.body, '/pr-ai-review') &&
41
- needs.check-membership.outputs.member == 'true'
+ (
42
+ needs.check-membership.outputs.member == 'true' ||
43
+ github.event.comment.author_association == 'OWNER' ||
44
+ github.event.comment.author_association == 'COLLABORATOR'
45
+ )
46
)
47
steps:
48
- name: Check required secrets
0 commit comments