Auto trigger PR reviews when they are from branches in repo #100
This workflow graph cannot be shown
A graph will be generated the next time this workflow is run.
Annotations
1 error
|
Invalid workflow file:
.github/workflows/gemini-dispatch.yml#L1
(Line: 46, Col: 9): Unexpected symbol: '#'. Located at position 1 within expression: # For PRs: only if not from a fork
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.fork == false
) ||
# For comments: only if user types @gemini-cli and is OWNER/MEMBER/COLLABORATOR
(
github.event.sender.type == 'User' &&
startsWith(github.event.comment.body || github.event.review.body || github.event.issue.body, '@gemini-cli') &&
contains(fromJSON('["OWNER", "MEMBER", "COL[...]
|