aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/assert-changelog.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-03-01 00:10:51 -0300
committerEuAndreh <eu@euandre.org>2021-03-01 00:10:51 -0300
commiteb7f5f737d3d9538ddd685a3a19a3321bc89d39a (patch)
treed77470bcb575e00991c1447f3d634609180288fa /aux/workflow/assert-changelog.sh
parentMakefile: stop ignoring terraform failure (diff)
downloadserver-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.gz
server-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.xz
Update files under aux/
Diffstat (limited to 'aux/workflow/assert-changelog.sh')
-rwxr-xr-xaux/workflow/assert-changelog.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/aux/workflow/assert-changelog.sh b/aux/workflow/assert-changelog.sh
new file mode 100755
index 0000000..d39f527
--- /dev/null
+++ b/aux/workflow/assert-changelog.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -eu
+
+PROJECT="$1"
+
+for VVERSION in $(git tag); do
+ VERSION="${VVERSION#v}"
+ DATE="$(git log -1 --format=%cd --date=short "$VVERSION")"
+ CHANGELOG_ENTRY="# [$VERSION](https://git.euandreh.xyz/$PROJECT/commit/?id=$VVERSION) - $DATE"
+ if ! grep -qF "$CHANGELOG_ENTRY" CHANGELOG.md; then
+ echo "Missing '$CHANGELOG_ENTRY' entry from CHANGELOG.md" >&2
+ exit 1
+ fi
+done