From f5467ba95725abe453c0eb1220409f6b38a71578 Mon Sep 17 00:00:00 2001 From: Christopher Butler Date: Wed, 19 Nov 2025 15:32:05 -0500 Subject: [PATCH 1/2] test new dev-build workflow and script --- folder_1/sample2.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 folder_1/sample2.txt diff --git a/folder_1/sample2.txt b/folder_1/sample2.txt new file mode 100644 index 0000000..2a67f8c --- /dev/null +++ b/folder_1/sample2.txt @@ -0,0 +1 @@ +another test file \ No newline at end of file From 83651fd3375eeb0063be08507b7b95fc11ce7876 Mon Sep 17 00:00:00 2001 From: Christopher Butler Date: Wed, 19 Nov 2025 15:38:08 -0500 Subject: [PATCH 2/2] fix workflow typo --- .github/scripts/generate-matrix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/generate-matrix.sh b/.github/scripts/generate-matrix.sh index c995dd6..3485c3a 100755 --- a/.github/scripts/generate-matrix.sh +++ b/.github/scripts/generate-matrix.sh @@ -36,7 +36,7 @@ else echo "" # Collect changed files/folders, filter out .github and docs - DIFF=$( git diff --dirstat=files,0,cumulative "$BASE_SHA" "$GITHUB_SHA" | awk -F ' ' '{print $2}' | grep -vE '(^.github)' || true ) + DIFF=$( git diff --dirstat=files,0,cumulative "$BASE_SHA" "$HEAD_SHA" | awk -F ' ' '{print $2}' | grep -vE '(^.github)' || true ) echo "--DIFF--" echo "$DIFF" echo ""