From 88975c49e98fb701e9f00736ef5b37d040d30ead Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Thu, 29 Jan 2026 09:53:22 -0500 Subject: [PATCH] fix(ci): pass image URL to bluesky workflow to avoid OG fetch timeout The reusable workflow was timing out trying to fetch OG tags from the live site before it fully propagated. By passing the image URL directly from the RSS feed, we skip the OG fetch entirely. --- .github/workflows/bluesky-new-post.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bluesky-new-post.yml b/.github/workflows/bluesky-new-post.yml index 31f0bd8..7b857fa 100644 --- a/.github/workflows/bluesky-new-post.yml +++ b/.github/workflows/bluesky-new-post.yml @@ -56,6 +56,7 @@ jobs: embed_url: ${{ needs.detect.outputs.post_url }} embed_title: ${{ needs.detect.outputs.post_title }} embed_description: ${{ needs.detect.outputs.post_description }} + embed_image_url: ${{ needs.detect.outputs.post_image_url }} secrets: BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }}