From e5ac8f96ba9a753bcafbdf3a23a6620bcc9b61cb Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 16 Mar 2025 11:39:17 -0600 Subject: [PATCH] fix: correct workflow trigger syntax in build preview deployment - Updated the workflow trigger from 'n' to 'on' for proper event handling. - Ensured the workflow correctly responds to pull request events. --- .github/workflows/build-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index 6834749..1e8a89c 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -1,6 +1,6 @@ name: Build Preview Deployment -n: +on: pull_request: types: [opened, synchronize]