Is there any way to trigger tests to run again automatically when the target branch changes?
Suppose we have PR1 which targets master. Tests are triggered on pr/1/merge when master is at abc123. However, another PR2 is merged into master before PR1, and master is now at commit def456. Is there any way for GHPRB to trigger pr/1/merge again automatically? Or to somehow provide a warning that PR1 was last tested against a now-outdated version of master?
Is there any way to trigger tests to run again automatically when the target branch changes?
Suppose we have PR1 which targets
master
. Tests are triggered onpr/1/merge
whenmaster
is atabc123
. However, another PR2 is merged intomaster
before PR1, andmaster
is now at commitdef456
. Is there any way for GHPRB to triggerpr/1/merge
again automatically? Or to somehow provide a warning that PR1 was last tested against a now-outdated version ofmaster
?Thanks!