From 6687f2723da2f0a7c268e6db01a4f4732e1f5b61 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 16 Mar 2025 11:15:34 -0600 Subject: [PATCH] chore: enhance build preview workflow with additional debug information - Updated workflow name to use quotes for consistency. - Added event name and event type to the debug output for improved context during deployments. --- .github/workflows/build-preview.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index 3af44a1..4aa110a 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -1,4 +1,4 @@ -name: Build Preview Deployment +name: "Build Preview Deployment" on: pull_request: @@ -49,4 +49,6 @@ jobs: run: | echo "Artifact upload completed" echo "Workflow ID: ${{ github.run_id }}" - echo "Repository: ${{ github.repository }}" \ No newline at end of file + echo "Repository: ${{ github.repository }}" + echo "Event name: ${{ github.event_name }}" + echo "Event type: ${{ github.event.action }}" \ No newline at end of file