We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0624450 commit 437675bCopy full SHA for 437675b
1 file changed
.github/workflows/gemini-dispatch.yml
@@ -10,6 +10,7 @@ on:
10
pull_request:
11
types:
12
- 'opened'
13
+ - 'ready_for_review'
14
issues:
15
16
@@ -49,7 +50,8 @@ jobs:
49
50
if: |-
51
(
52
github.event_name == 'pull_request' &&
- github.event.pull_request.head.repo.fork == false
53
+ github.event.pull_request.head.repo.fork == false &&
54
+ github.event.pull_request.draft == false
55
) || (
56
github.event_name == 'issues' &&
57
contains(fromJSON('["opened", "reopened"]'), github.event.action)
0 commit comments