Open dermetfan opened 1 year ago
Consider this: A rule has draft: false with the intention to only run on PRs that are ready for review.
draft: false
However, #lib.io.github_pr only reacts to synchronize events, not ready_for_review events, so what happens is this:
#lib.io.github_pr
synchronize
ready_for_review
draft: true
#lib.io.github_pr should also react to ready_for_review events as appropriate.
Consider this: A rule has
draft: false
with the intention to only run on PRs that are ready for review.However,
#lib.io.github_pr
only reacts tosynchronize
events, notready_for_review
events, so what happens is this:synchronize
event withdraft: true
(rule does not trigger)ready_for_review
event withdraft: false
(rule does not trigger)#lib.io.github_pr
should also react toready_for_review
events as appropriate.