Skip to content

Commit c2b6ac4

Browse files
authored
[CI] fix path filtering in the documentation workflows (huggingface#7153)
fix: path
1 parent 06b01ea commit c2b6ac4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
- v*-patch
1010
paths:
1111
- "src/diffusers/**.py"
12-
- "examples/"
13-
- "docs/"
12+
- "examples/**"
13+
- "docs/**"
1414

1515
jobs:
1616
build:

.github/workflows/build_pr_documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
pull_request:
55
paths:
66
- "src/diffusers/**.py"
7-
- "examples/"
8-
- "docs/"
7+
- "examples/**"
8+
- "docs/**"
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)