From b5ded3c2a405992cbabc8ea911e55faf4f3a3920 Mon Sep 17 00:00:00 2001 From: thebenmerlin Date: Sun, 15 Mar 2026 18:59:54 +0530 Subject: [PATCH] fix: exclude ecosystem submodules from Jekyll processing The `actions/jekyll-build-pages` step fails because ecosystem submodules contain code snippets with `{{ }}` syntax that Jekyll's Liquid engine misinterprets as template variables. Added `ecosystem/` to the exclude list as a safeguard to prevent any submodule content from breaking the build. --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index 8172add9..c80d589e 100644 --- a/_config.yml +++ b/_config.yml @@ -9,6 +9,7 @@ exclude: - docs/ - website/ + - ecosystem/ - node_modules/ - vendor/ - Gemfile