From 54f9fdab1c5a5a057a5220855455391e4e534d7c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:43:14 +0000 Subject: [PATCH 1/5] Initial plan From 059386dfb880477e31272534b49abbb362788bf6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:46:55 +0000 Subject: [PATCH 2/5] Extract CSS to separate file and streamline workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Extract CSS from inline styles to external styles.css for better caching - Reduce HTML file size from 10,629 to 8,492 bytes (20% reduction) - Consolidate workflow file operations, removing redundant checks - Remove 84 lines of duplicate CSS from workflow (59% reduction: 142→58 lines) - Simplify feed file copying with single find operation Co-authored-by: monk-blade <1335766+monk-blade@users.noreply.github.com> --- .github/workflows/deploy.yml | 91 ++---------------------------------- index.html | 77 +----------------------------- styles.css | 74 +++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+), 163 deletions(-) create mode 100644 styles.css diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b5bb7e835..6c5c3ba66 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,94 +33,11 @@ jobs: # Create the site directory structure mkdir -p _site/feeds - # Copy index.html if it exists, otherwise create a basic one - if [ -f "index.html" ]; then - cp index.html _site/ - else - cat > _site/index.html << 'EOF' - - -
- - -RSS feed files will appear here when uploaded.
-