From 805b50737c120007c8e1680e6b6e5ec0350550f3 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Wed, 10 Sep 2025 12:09:25 -0400 Subject: [PATCH] chore: enhance PR plugin build workflow with debug output - Updated the GitHub Actions workflow to append changed files to the output for PR comments. - Added debug output to display the list of changed files found during the workflow execution. --- .github/workflows/pr-plugin-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-plugin-build.yml b/.github/workflows/pr-plugin-build.yml index 81d0930bf..01dd0c569 100644 --- a/.github/workflows/pr-plugin-build.yml +++ b/.github/workflows/pr-plugin-build.yml @@ -139,8 +139,12 @@ jobs: run: | # Format the file list for the comment echo "files<> $GITHUB_OUTPUT - cat changed_files.txt + cat changed_files.txt >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT + + # Debug output + echo "Changed files found:" + cat changed_files.txt - name: Comment on PR if: steps.changed-files.outputs.has_changes == 'true'