We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7031275 commit 4bc124cCopy full SHA for 4bc124c
.github/workflows/doc.yml
@@ -21,9 +21,10 @@ on:
21
- '3.8'
22
- '3.7'
23
paths:
24
+ - '.github/workflows/doc.yml'
25
+ # Should be in sync with `netlify.toml`:
26
- 'Doc/**'
27
- 'Misc/**'
- - '.github/workflows/doc.yml'
28
29
permissions:
30
contents: read
netlify.toml
@@ -2,6 +2,9 @@
2
base = "Doc/"
3
command = "make html"
4
publish = "build/html"
5
+ # Do not trigger netlify builds if docs were not changed.
6
+ # Changed files should be in sync with `.github/workflows/doc.yml`
7
+ ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF ./Doc ./Misc ./netlify.toml"
8
9
[build.environment]
10
PYTHON_VERSION = "3.8"
0 commit comments