From 62def15320dece9138784119102d89fda8b1b1ab Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Thu, 15 Sep 2022 11:22:13 +0100 Subject: [PATCH] Run test_changed_notebooks on push/PR to any branch and manual dispatch --- .github/workflows/test_changed_notebooks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_changed_notebooks.yml b/.github/workflows/test_changed_notebooks.yml index f4b3a318a..87ef87fa0 100644 --- a/.github/workflows/test_changed_notebooks.yml +++ b/.github/workflows/test_changed_notebooks.yml @@ -7,17 +7,17 @@ defaults: shell: bash # To override PowerShell on Windows on: + # Trigger the workflow on push or PR to any branch push: - branches: - - master paths: - 'doc/source/examples/**/*.ipynb' pull_request: - branches: - - master paths: - 'doc/source/examples/**/*.ipynb' + # don't trigger for draft PRs types: [ opened, synchronize, reopened, ready_for_review ] + # Trigger the workflow on manual dispatch + workflow_dispatch: jobs: test_changed_notebooks: