fix: update lint hook success message

Change "Pre-PR lint check" to "Lint check" since hook now
triggers on git push, not just PR creation.

Co-Authored-By: Claude <claude@anthropic.com>
This commit is contained in:
aaddrick
2026-01-25 03:47:16 -05:00
parent 8fb77928f3
commit 92c8b85fe1

View File

@@ -90,7 +90,7 @@ workflows_checked=0
[[ -n "$changed_scripts" ]] && scripts_checked=$(printf '%s\n' "$changed_scripts" | wc -l)
[[ -n "$changed_workflows" ]] && workflows_checked=$(printf '%s\n' "$changed_workflows" | wc -l)
printf 'Pre-PR lint check passed: %d shell scripts, %d workflows checked\n' \
printf 'Lint check passed: %d shell scripts, %d workflows checked\n' \
"$scripts_checked" "$workflows_checked"
exit 0