Skip to content

Commit 4cedf23

Browse files
authored
[ISV-5825] trigger hosted pipeline when PR is marked as ready (#810)
1 parent e4b0f93 commit 4cedf23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ansible/roles/operator-pipeline/tasks/community-pipeline-event-listener.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
value: >-
3939
(
4040
header.match("X-GitHub-Event", "pull_request")
41-
&& body.action in ["opened", "reopened", "synchronize"]
41+
&& body.action in ["opened", "reopened", "synchronize", "ready_for_review"]
4242
&& body.pull_request.base.ref == "{{ branch }}"
4343
)
4444
bindings:

ansible/roles/operator-pipeline/tasks/operator-pipeline-event-listener.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
value: >-
3939
(
4040
header.match("X-GitHub-Event", "pull_request")
41-
&& body.action in ["opened", "reopened", "synchronize"]
41+
&& body.action in ["opened", "reopened", "synchronize", "ready_for_review"]
4242
&& body.pull_request.base.ref == "{{ branch }}"
4343
)
4444
bindings:

0 commit comments

Comments
 (0)