just: Add post-checkout hook

This commit is contained in:
Adrian Duke 2026-04-08 18:28:06 +01:00 committed by Fintan Halpenny
parent 09cd3eeb82
commit 4e0f739c29
2 changed files with 4 additions and 0 deletions

View File

@ -11,7 +11,9 @@ CHECK := "🔄 " + BOLD
default: check-hooks
@just --list
# Run post-checkout checks
[group('hooks')]
post-checkout:
# Run pre-commit checks
[group('hooks')]

View File

@ -47,6 +47,8 @@ if [ "$HOOK_NAME" = "pre-commit" ]; then
elif [ "$HOOK_NAME" = "pre-push" ]; then
echo "Running pre-push checks..."
just pre-push
elif [ "$HOOK_NAME" = "post-checkout" ]; then
just post-checkout
else
echo "Unknown hook: $HOOK_NAME"
exit 1