Create PR summary workflow with robust git diff-tree approach #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request was created as a result of the following prompt in Copilot Chat.
Original prompt - submitted by @02ez
Summary
This PR creates a new GitHub Actions workflow
.github/workflows/pr-summary.yml
that provides a robust file change summary for pull requests usinggit diff-tree
instead ofgit diff
.Key Features
Robust Git Operations:
git diff-tree --name-only --no-commit-id -r
for reliable file change detectionFile Change Analysis:
^content/.*\.md$
GitHub Actions Integration:
$GITHUB_STEP_SUMMARY
contents: read
)pull_request
events (opened and synchronized)Example Output
The workflow generates a step summary that includes:
This provides maintainers and contributors with clear visibility into what files are being modified in each pull request, with special attention to documentation changes.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.