From c867d5c724a1fbdf8e6782b45592ad82a9438514 Mon Sep 17 00:00:00 2001 From: Paul LeMarquand Date: Fri, 7 Nov 2025 08:46:02 -0500 Subject: [PATCH] Ignore ./github-workflows folder in soundness.sh --- scripts/soundness.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/soundness.sh b/scripts/soundness.sh index 839713563..6d4be9717 100755 --- a/scripts/soundness.sh +++ b/scripts/soundness.sh @@ -104,8 +104,9 @@ EOF \( \! -path './coverage/*' -a \ \( \! -path './.husky/*' -a \ \( \! -path './src/typings/*' -a \ - \( "${matching_files[@]}" \) \ - \) \) \) \) \) \) \) \) \) + \( \! -path './github-workflows/*' -a \ + \( "${matching_files[@]}" \ + \) \) \) \) \) \) \) \) \) \) \) } | while read -r line; do if [[ "$(replace_acceptable_years < "$line" | head -n "$expected_lines" | shasum)" != "$expected_sha" ]]; then printf "\033[0;31mmissing headers in file '%s'!\033[0m\n" "$line"