chore(ci): exclude deployment and Docker files from unit test workflow triggers (#5214)

* chore(ci): exclude deployment and Docker files from unit test workflow triggers
- Modify unittests workflow to ignore changes in deploy directory and Docker-related files
This commit is contained in:
Adrian Priestley
2025-07-24 04:05:13 -02:30
committed by GitHub
parent 81b8f3fc0e
commit 4ac1d91c16

View File

@@ -8,18 +8,24 @@ on:
paths: paths:
- '**' - '**'
- '!docs/**' - '!docs/**'
- '!deploy/**'
- '!setup.py' - '!setup.py'
- '!Dockerfile'
- '!*.iss' - '!*.iss'
- '!.gitignore' - '!.gitignore'
- '!.dockerignore'
- '!.github/workflows/**' - '!.github/workflows/**'
- '.github/workflows/unittests.yml' - '.github/workflows/unittests.yml'
pull_request: pull_request:
paths: paths:
- '**' - '**'
- '!docs/**' - '!docs/**'
- '!deploy/**'
- '!setup.py' - '!setup.py'
- '!Dockerfile'
- '!*.iss' - '!*.iss'
- '!.gitignore' - '!.gitignore'
- '!.dockerignore'
- '!.github/workflows/**' - '!.github/workflows/**'
- '.github/workflows/unittests.yml' - '.github/workflows/unittests.yml'