diff --git a/.github/workflows/test_notebooks.yml b/.github/workflows/test_notebooks.yml index 045d60f09..bb80f3550 100644 --- a/.github/workflows/test_notebooks.yml +++ b/.github/workflows/test_notebooks.yml @@ -5,15 +5,19 @@ on: push: branches: [ develop, stable, nbtests ] paths-ignore: - - '**/*.md' # ignore markdown files - - '**/*.rst' # ignore restructured text files + - 'DEA_Sandbox.ipynb' # ignore landing page + - 'DEA_notebooks_template.ipynb' # ignore template + - '*.md' # ignore all markdown files + - '*.rst' # ignore all restructured text files - '.github/**' # ignore anything in .github folder - '!.github/workflows/test_notebooks.yml' # except test_notebooks.yml pull_request: branches: [ develop, stable ] paths-ignore: - - '**/*.md' - - '**/*.rst' + - 'DEA_Sandbox.ipynb' + - 'DEA_notebooks_template.ipynb' + - '*.md' + - '*.rst' - '.github/**' - '!.github/workflows/test_notebooks.yml'