From df5389c27e358e8b934e8666654a0ad5f1b2bb28 Mon Sep 17 00:00:00 2001 From: darken Date: Sat, 30 Aug 2025 16:44:26 +0200 Subject: [PATCH] Configure Jekyll `include` and `exclude` settings This commit updates the Jekyll configuration file (`_config.yml`) to: - Include `README.md` and `CHANGELOG.md` in the site build. - Exclude `CONTRIBUTING.md` and `CLAUDE.md` from the site build. --- _config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_config.yml b/_config.yml index 74cc9d0f..a79052d1 100644 --- a/_config.yml +++ b/_config.yml @@ -14,6 +14,8 @@ author: "by Matthias Urhahn" include: - PRIVACY_POLICY.md + - README.md + - CHANGELOG.md exclude: - buildSrc - gradle/wrapper @@ -24,3 +26,5 @@ exclude: - app - app-common - app-wear + - CONTRIBUTING.md + - CLAUDE.md