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.
This commit is contained in:
Eli Bosley
2025-09-10 12:09:25 -04:00
parent c10aae2dd7
commit 805b50737c

View File

@@ -139,8 +139,12 @@ jobs:
run: |
# Format the file list for the comment
echo "files<<EOF" >> $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'