Skip to content

Commit c7dbec0

Browse files
fix: better feedback
1 parent 8862b09 commit c7dbec0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/update-smoke-test-latest-versions.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ jobs:
8585
MAVEN_VERSION: ${{ steps.maven.outputs.version }}
8686
SUREFIRE_VERSION: ${{ steps.surefire.outputs.version }}
8787
run: |
88+
echo "Writing resolved versions to properties files:"
89+
echo " Gradle: ${GRADLE_VERSION}"
90+
echo " Maven: ${MAVEN_VERSION}"
91+
echo " Maven Surefire: ${SUREFIRE_VERSION}"
92+
8893
printf '%s\n' \
8994
"# Pinned \"latest\" versions for CI Visibility Gradle smoke tests." \
9095
"# Updated automatically by the update-smoke-test-latest-versions workflow." \
@@ -102,9 +107,14 @@ jobs:
102107
id: check-changes
103108
run: |
104109
if [[ -z "$(git status -s)" ]]; then
105-
echo "No changes to commit."
110+
echo "No changes detected — pinned versions are already up to date."
106111
echo "has_changes=false" >> "$GITHUB_OUTPUT"
107112
else
113+
echo "Changes detected in the following files:"
114+
git status -s
115+
echo ""
116+
echo "Diff:"
117+
git diff
108118
echo "has_changes=true" >> "$GITHUB_OUTPUT"
109119
fi
110120

0 commit comments

Comments
 (0)