Iand/updating recipe validation workflow (#4413)

This commit is contained in:
w. ian douglas
2025-08-28 18:01:55 -06:00
committed by GitHub
parent 867361e49c
commit d708046ab0
+3 -2
View File
@@ -110,6 +110,7 @@ jobs:
id: validate
if: steps.recipe_changes.outputs.recipe_files_changed == 'true'
run: |
set -e
# Read the list of changed recipe files
RECIPE_FILES=$(cat /tmp/changed_recipe_files.txt)
@@ -132,7 +133,7 @@ jobs:
ALL_VALID=false
fi
fi
done <<< "$RECIPE_FILES"
done < /tmp/changed_recipe_files.txt
# Second pass: Check for duplicate filenames
if [ "$ALL_VALID" = true ]; then
@@ -177,7 +178,7 @@ jobs:
echo "✅ Filename '$FILENAME' validation complete"
fi
done <<< "$RECIPE_FILES"
done < /tmp/changed_recipe_files.txt
fi
# Save validation output for use in comment