We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb4e1df commit e5ffc64Copy full SHA for e5ffc64
1 file changed
.github/workflows/tests.yml
@@ -35,10 +35,11 @@ jobs:
35
ALL_PARSERS="redshift"
36
# Add more parsers here as they are added to the repository
37
# ALL_PARSERS="redshift mysql postgresql"
38
-
+
39
CHANGED_FILES="${{ steps.changed-files.outputs.changed_files }}"
40
+ echo "Debug: Changed files: $CHANGED_FILES"
41
CHANGED_PARSERS=""
42
43
for parser in $ALL_PARSERS; do
44
if echo "$CHANGED_FILES" | grep -q "^$parser/"; then
45
if [ -z "$CHANGED_PARSERS" ]; then
@@ -48,7 +49,7 @@ jobs:
48
49
fi
50
51
done
52
53
if [ -n "$CHANGED_PARSERS" ]; then
54
echo "matrix={\"parser\":[$CHANGED_PARSERS]}" >> $GITHUB_OUTPUT
55
echo "any_changed=true" >> $GITHUB_OUTPUT
0 commit comments