From 52efe407ed8554681f5c8c0e943b898a8b5e2a76 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 25 Apr 2026 17:27:41 +0900 Subject: [PATCH] fix: disable XML entity expansion limit in rss-to-bluesky The default limit of 10000 was exceeded by jser.info/rss/ (10218 entities). Set to 0 (unlimited) since the feed source is jser.info itself and trusted. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/rss-to-bluesky.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rss-to-bluesky.yml b/.github/workflows/rss-to-bluesky.yml index f74dcd46bb0..4f628f2fbbd 100644 --- a/.github/workflows/rss-to-bluesky.yml +++ b/.github/workflows/rss-to-bluesky.yml @@ -40,6 +40,7 @@ jobs: password: ${{ secrets.JSER_BLUESKY_PASSWORD }} cache-file: ${{ github.workspace }}/blueskyfeedbot/cache.json initial-post-limit: 1 + xml-entity-expansion-limit: 0 jser: runs-on: ubuntu-latest @@ -73,3 +74,4 @@ jobs: password: ${{ secrets.JSER_BLUESKY_PASSWORD }} cache-file: ${{ github.workspace }}/blueskyfeedbot/cache.json initial-post-limit: 1 + xml-entity-expansion-limit: 0