From 4ee72357b4fa2415ca99ccc1ce6d5ea664e30726 Mon Sep 17 00:00:00 2001 From: Bruno Borges Date: Wed, 25 Feb 2026 21:29:48 -0500 Subject: [PATCH] Fix deploy workflow path triggers for YAML content and translations Update push path filters to: - content/** (was content/**/*.json, now covers YAML files too) - translations/** (new, triggers deploy on translation changes) - templates/** (unchanged) - site/** (unchanged) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 39ddf3a..18ecc58 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,8 @@ on: push: branches: [main] paths: - - 'content/**/*.json' + - 'content/**' + - 'translations/**' - 'templates/**' - 'site/**' workflow_run: