ci: Add logging to docs-only change detection (#22724)

This PR adds some logging to the docs-only change detection, for better
auditability.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-06 13:43:07 -05:00 committed by GitHub
parent 84fdcbbe7d
commit 2023c43681
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,10 +39,13 @@ jobs:
# When we're running in a merge queue, never assume that the changes
# are docs-only, as there could be other PRs in the group that
# contain non-docs changes.
echo "Running in the merge queue"
echo "docs_only=false" >> $GITHUB_OUTPUT
elif git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep -qvE '^docs/'; then
echo "Detected non-docs changes"
echo "docs_only=false" >> $GITHUB_OUTPUT
else
echo "Docs-only change"
echo "docs_only=true" >> $GITHUB_OUTPUT
fi