mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
29 lines
670 B
Bash
Executable File
29 lines
670 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
#RELEASE_NOTES_FILE=${RELEASE_NOTES_FILE:?RELEASE_NOTES_FILE must be provided}
|
|
|
|
git log --oneline --decorate --max-count=1000 > /tmp/gitlog.txt
|
|
|
|
readarray lines < /tmp/gitlog.txt
|
|
for line in "${lines[@]}"
|
|
do
|
|
if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]]
|
|
then
|
|
# printf "no more lines after $line" 1>&2
|
|
break
|
|
elif [[ $line =~ \[maven-release-plugin\] ]]
|
|
then
|
|
# printf "maven release plugin, skipping: $line\n" 1>&2
|
|
continue
|
|
elif [[ $line =~ "Merge" ]]
|
|
then
|
|
printf -- "- $line"
|
|
# printf "merge info, skipping: $line" 1>&2
|
|
continue
|
|
else
|
|
printf -- "- $line"
|
|
# printf "$line" | tee -a ${RELEASE_NOTES_FILE}
|
|
fi
|
|
done
|
|
|