diff options
author | EuAndreh <eu@euandre.org> | 2021-03-01 00:10:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-01 00:10:51 -0300 |
commit | eb7f5f737d3d9538ddd685a3a19a3321bc89d39a (patch) | |
tree | d77470bcb575e00991c1447f3d634609180288fa /aux/workflow/assert-changelog.sh | |
parent | Makefile: stop ignoring terraform failure (diff) | |
download | server-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.gz server-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.xz |
Update files under aux/
Diffstat (limited to 'aux/workflow/assert-changelog.sh')
-rwxr-xr-x | aux/workflow/assert-changelog.sh | 14 |
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 |