Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/reviewer-issue-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,13 @@ jobs:
# gate still rejects and cleans up any such comment on the next scheduled
# sweep, so this is a cost guard, not the only line of defense.
if: >-
${{ github.event_name != 'issue_comment' ||
if: >-
${{ ! github.event.repository.fork &&
Comment thread
mohanrajendran marked this conversation as resolved.
(github.event_name != 'issue_comment' ||
(github.event.issue.number == 1346 &&
contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association))) }}
(github.event.issue.number == 1346 &&
contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association)) }}
contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association)) }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading