Skip to content

Commit a2818b3

Browse files
committed
ci(docs[paths-filter]) Fix python_files path for src layout
why: The filter used vcspull/** but sources live under src/vcspull/** so Python file changes never triggered PUBLISH, meaning docs have never been rebuilt on source changes since the src layout was adopted. Also adds workflow_dispatch to allow manual doc rebuilds. what: - vcspull/** -> src/vcspull/** in python_files filter - Add workflow_dispatch trigger
1 parent 9fa2aa2 commit a2818b3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
workflow_dispatch:
78

89
permissions:
910
contents: read
@@ -31,7 +32,7 @@ jobs:
3132
- 'docs/**'
3233
- 'examples/**'
3334
python_files:
34-
- 'vcspull/**'
35+
- 'src/vcspull/**'
3536
- pyproject.toml
3637
- uv.lock
3738

0 commit comments

Comments
 (0)