From 1709be162c3a0d7f892014c0e7ceaebe4dfdce98 Mon Sep 17 00:00:00 2001 From: ZanSara Date: Wed, 30 Aug 2023 10:25:47 +0200 Subject: [PATCH] auto trigger e2e workflow on PRs that affect it (#5684) --- .github/workflows/e2e.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 27c3bc007..e7a6ad64e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -5,6 +5,14 @@ on: workflow_dispatch: # Activate this workflow manually schedule: - cron: "0 0 * * *" + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review + paths: + - "e2e/**/*.py" env: PYTHON_VERSION: "3.8"