From: Alexander Goussas Date: Fri, 24 Oct 2025 16:59:53 +0000 (-0500) Subject: feat: add sample pre-push script to integrate with changelog task X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=f331b363c61fcd33fdb0db8285b227a37e277f38;p=gradle-changelog-plugin.git feat: add sample pre-push script to integrate with changelog task --- 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