From 43a55902cc79fd5e5521df30c8bfdeae5c9f2c11 Mon Sep 17 00:00:00 2001 From: Sebastian Buck <38660441+frunika@users.noreply.github.com> Date: Tue, 2 Apr 2024 12:54:26 +0200 Subject: [PATCH] Update regression-test trigger conditions Added 'pull_request' action to the event triggers in the regression-test workflow. The regression tests with pytest will run when a pull request is opened against the 'main' branch AND a review is requested. --- .github/workflows/regression-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/regression-test.yml b/.github/workflows/regression-test.yml index 0f0b9af1f..8c03f4e91 100644 --- a/.github/workflows/regression-test.yml +++ b/.github/workflows/regression-test.yml @@ -1,6 +1,10 @@ name: Regression Test With Pytest on: - workflow_dispatch: + pull_request: + branches: + - main + types: + - review_requested workflow_call: jobs: