Revert GitHub Actions workflow to use negated paths instead of paths-ignore for excluding KPI health check, Panel app, Hugging Face Spaces, and KPI analysis workflow files from Streamlit deployment triggers
Browse files
.github/workflows/main.yml
CHANGED
|
@@ -14,11 +14,10 @@ on:
|
|
| 14 |
- ".streamlit/**"
|
| 15 |
- "requirements.txt"
|
| 16 |
- "README.md"
|
| 17 |
-
|
| 18 |
-
- "
|
| 19 |
-
- "
|
| 20 |
-
- "
|
| 21 |
-
- ".github/workflows/kpi_analysis.yml"
|
| 22 |
|
| 23 |
# to run this workflow manually from the Actions tab
|
| 24 |
workflow_dispatch:
|
|
|
|
| 14 |
- ".streamlit/**"
|
| 15 |
- "requirements.txt"
|
| 16 |
- "README.md"
|
| 17 |
+
- "!process_kpi/kpi_health_check/**"
|
| 18 |
+
- "!panel_app/**"
|
| 19 |
+
- "!hf_spaces/**"
|
| 20 |
+
- "!.github/workflows/kpi_analysis.yml"
|
|
|
|
| 21 |
|
| 22 |
# to run this workflow manually from the Actions tab
|
| 23 |
workflow_dispatch:
|