summaryrefslogtreecommitdiff
path: root/bin/auto-changelog
blob: dcf33a20234b8a6919f177ee263ff29746ed981e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env bash
set -e

list-files() {
	git show --pretty="" --name-only HEAD
}

list-articles() {
	list-files | grep -E '^src/.*[.](md|org)$' | grep -v -e '/index[.]md$' -e '/ChangeLog[.]md$'
}	

should-insert() {
	test -n "$(list-articles)"
}

generate-entry() {
	git log -n1 --stat --date='format:%Y-%m-%d' --format=$'## %ad  %an <%ae>\n\n%B' | cat -s
}

html_escape() {
	sed -e 's/&/\&amp;/g' -e 's/</\&lt;/g' -e 's/>/\&gt;/g' -e 's/^ \S/   &/'
}

insert() {
	{
		printf '%s\n' \
		       'ChangeLog' \
		       '=========' \
		       ''

		generate-entry | html_escape
		echo
		cat src/ChangeLog.md | sed '1,3d'
	} | bin/write-atomic src/ChangeLog.md
}

main() {
	cd "$(dirname -- "$0")/.."
	if should-insert; then
		insert
		git add src/ChangeLog.md
		git commit -m 'Auto-insert entry to ChangeLog'
	fi
}

main "$@"