auto trigger e2e workflow on PRs that affect it (#5684)

This commit is contained in:
ZanSara 2023-08-30 10:25:47 +02:00 committed by GitHub
parent 40d9f34e68
commit 1709be162c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"