From f331b363c61fcd33fdb0db8285b227a37e277f38 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Fri, 24 Oct 2025 11:59:53 -0500 Subject: [PATCH] feat: add sample pre-push script to integrate with changelog task --- scripts/pre-push | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 scripts/pre-push diff --git a/scripts/pre-push b/scripts/pre-push new file mode 100644 index 0000000..c5daa81 --- /dev/null +++ b/scripts/pre-push @@ -0,0 +1,5 @@ +#!/bin/bash + +./gradlew changelog +git add CHANGELOG.md +git commit -m 'docs: update CHANGELOG.md' || true -- 2.43.0