Skip to content

Commit f53801f

Browse files
committed
Attempt to fix bug in detecting module changes.
1 parent fc0af96 commit f53801f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
module_name=$(basename "$module_dir")
125125
126126
# Check if this specific module or common dependencies changed
127-
if echo "$CHANGED_FILES" | grep -q "$module_name/" || \
127+
if echo "$CHANGED_FILES" | grep -q "^$module_name/" || \
128128
echo "$CHANGED_FILES" | grep -q "pom.xml" || \
129129
echo "$CHANGED_FILES" | grep -q "powertools-common/"; then
130130
echo "Changes detected in $module_name - running GraalVM tests"

0 commit comments

Comments
 (0)