mirror of
https://github.com/unraid/webgui.git
synced 2025-12-30 22:20:23 -06:00
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:
6
.github/workflows/pr-plugin-build.yml
vendored
6
.github/workflows/pr-plugin-build.yml
vendored
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user