diff options
author | EuAndreh <eu@euandre.org> | 2021-03-21 14:40:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-21 16:02:58 -0300 |
commit | 78a9fd4e3ace4096cc61568b2c49710bddbbff79 (patch) | |
tree | dfe2f7b12abcc977287658e4f4cf99b95fa32124 /aux/workflow/assert-changelog.sh | |
download | git-permalink-78a9fd4e3ace4096cc61568b2c49710bddbbff79.tar.gz git-permalink-78a9fd4e3ace4096cc61568b2c49710bddbbff79.tar.xz |
Add base skeleton project files
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 |