Skip to content

Commit 9d2f1bf

Browse files
authored
CI: skip tests when only files in doc/web changes (github actions) (#41310)
* CI: skip tests when only files in doc/web changes (github) * Fixed yaml file indent * Revert "CI: skip tests when only files in doc/web changes (github)" This reverts commit 7eaca3f. * CI: Don't run lint if only doc changes (github worklow) * CI: Don't run lint if only doc changes (azure) * Fix (ex|in)clude logic in azure templates * Fixed small "typo" * Fix location of the "path" parameter * Removed extra "trigger" * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r629288230 * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r629289631 * Fix for comment https://github.com/pandas-dev/pandas/pull/41310/files#r628420098 * Fix for comment #41310 (comment) * Fix for comment #41310 (comment) * Fix for comment #41310 (comment) * Only ignore on "pull_request" not on "push" * Addresing comments Ref: #41310 (comment) Co-authored-by: ShaharNaveh <>
1 parent 8f70ed5 commit 9d2f1bf

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/database.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
branches:
88
- master
99
- 1.2.x
10+
paths-ignore:
11+
- "doc/**"
1012

1113
env:
1214
PYTEST_WORKERS: "auto"

.github/workflows/posix.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
branches:
88
- master
99
- 1.2.x
10+
paths-ignore:
11+
- "doc/**"
1012

1113
env:
1214
PYTEST_WORKERS: "auto"

.github/workflows/python-dev.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
pull_request:
88
branches:
99
- master
10+
paths-ignore:
11+
- "doc/**"
1012

1113
jobs:
1214
build:

azure-pipelines.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml
22
trigger:
3-
- master
4-
- 1.2.x
3+
branches:
4+
include:
5+
- master
6+
- 1.2.x
7+
paths:
8+
exclude:
9+
- 'doc/*'
510

611
pr:
712
- master

0 commit comments

Comments
 (0)