Add path filtering to build workflow

Restrict workflow dispatch to only run on changes to:
- README.md
- parse.py
- site/ directory

This prevents unnecessary action runs when other files change.
This commit is contained in:
Wilson Freitas
2026-03-22 09:41:49 -03:00
parent 14b48df3f5
commit 9405b48526
+4
View File
@@ -5,6 +5,10 @@ on:
- cron: "0 1 * * *"
push:
branches: [ master ]
paths:
- 'README.md'
- 'parse.py'
- 'site/**'
concurrency:
group: build-and-deploy