feat: add CI workflow to automatically check and report script changes in maintained apps (#32006)

This commit is contained in:
Dhruv Trivedi
2025-08-20 13:09:24 -06:00
committed by GitHub
parent ba9b204875
commit f03d5770ee
2 changed files with 91 additions and 3 deletions
+3 -3
View File
@@ -86,9 +86,9 @@ show_script_diff() {
fi
# Create temporary files for diff
TEMP_PREV=$(mktemp -t old)
TEMP_CURR=$(mktemp -t new)
TEMP_PREV=$(mktemp -t old.XXXXXX)
TEMP_CURR=$(mktemp -t new.XXXXXX)
echo "$PREV_SCRIPT" > "$TEMP_PREV"
echo "$CURR_SCRIPT" > "$TEMP_CURR"