mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
Always run the full test suite if the GitHub event is not pull_request
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
dea4aa62b9
commit
8a8ac0683b
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ def define_testrun(ctx: Context, event_name: str, changed_files: pathlib.Path):
|
|||
if TYPE_CHECKING:
|
||||
assert github_step_summary is not None
|
||||
|
||||
if event_name in ("push", "schedule"):
|
||||
if event_name != "pull_request":
|
||||
# In this case, a full test run is in order
|
||||
ctx.info("Writing 'testrun' to the github outputs file")
|
||||
testrun = {"type": "full"}
|
||||
|
|
Loading…
Add table
Reference in a new issue