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

Marshall Bowers created

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

Release Notes:

- N/A

Change summary

.github/workflows/ci.yml | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

.github/workflows/ci.yml 🔗

@@ -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