ci: updated the docs ci to only trigger if any files changed in the docs folder (#849)
Browse files
.github/workflows/docs.yaml
CHANGED
@@ -4,6 +4,8 @@ on:
|
|
4 |
push:
|
5 |
branches:
|
6 |
- main
|
|
|
|
|
7 |
permissions:
|
8 |
contents: write
|
9 |
jobs:
|
|
|
4 |
push:
|
5 |
branches:
|
6 |
- main
|
7 |
+
paths:
|
8 |
+
- 'docs/**' # This will only trigger the workflow when files in docs directory change
|
9 |
permissions:
|
10 |
contents: write
|
11 |
jobs:
|