From e3d5db92fa7ee7c40b59aaeafd2b0443b0c41c62 Mon Sep 17 00:00:00 2001 From: Jesse Turner Date: Thu, 14 May 2026 15:37:16 -0400 Subject: [PATCH] fix: add workflow_dispatch trigger to sync-preview workflow Allows manual triggering of the sync-preview workflow from the GitHub Actions UI while retaining the automatic push-on-main trigger. --- .github/workflows/sync-preview.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync-preview.yml b/.github/workflows/sync-preview.yml index b4f0fa1b0..c6055fa24 100644 --- a/.github/workflows/sync-preview.yml +++ b/.github/workflows/sync-preview.yml @@ -1,6 +1,7 @@ name: Sync Preview with Main on: + workflow_dispatch: push: branches: [main]