From c3bb7b419653abde7142d2937389fea95227af7a Mon Sep 17 00:00:00 2001 From: Tim Fischbach Date: Mon, 8 Jun 2026 17:00:47 +0200 Subject: [PATCH] Fix storybook workflow by dropping deprecated Percy action The percy/storybook-action repository was archived in 2022 and has now been removed entirely, breaking the workflow with an unresolvable action error. The action is only needed for legacy Storybook SDKs; since this project already runs Percy via the CLI in the snapshot script, the step can invoke it directly. --- .github/workflows/storybook.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml index 315ae4d137..cb5c945f01 100644 --- a/.github/workflows/storybook.yml +++ b/.github/workflows/storybook.yml @@ -125,10 +125,8 @@ jobs: bundle exec rake pageflow_scrolled:storybook:seed:setup[package/.storybook] - name: Snapshot - uses: percy/storybook-action@v0.1.6 - with: - working-directory: entry_types/scrolled/package - custom-command: yarn run snapshot + working-directory: entry_types/scrolled/package + run: yarn run snapshot - name: Publish working-directory: entry_types/scrolled/package