updated nosqlbench invite link

This commit is contained in:
Jonathan Shook 2020-05-06 13:23:38 -05:00
parent 96752aeebb
commit 77fdc93a23
2 changed files with 14 additions and 2 deletions

View File

@ -26,11 +26,16 @@ are automatically included when NoSQLBench is built.
## NoSQLBench Slack
There is a new
[slack channel](https://join.slack.com/t/nosqlbench/shared_invite/zt-cu9f2jpe-XiHN3SsUDcjkVgxaURFuaw) for NoSQLBench.
There is a new slack channel at nosqlbench.slack.com. In order to access the slack channel, you'll need an invite. You
can get that through this simple form, which will send you an invite in email:
[Slack Invite](https://docs.google.com/forms/d/e/1FAIpQLSdUOJ8iAPqyxsLfh1nBBsKShI53RAeuzYW4bKExmRMWjj4ufQ/viewform).
This is just a simple google form that automates the invite process.
Please join it if you are a new or existing NoSQLBench user and help us get it going!
## General Feedback
These guidelines are mirrored at the

View File

@ -3,10 +3,17 @@ set -e
#RELEASE_NOTES_FILE=${RELEASE_NOTES_FILE:?RELEASE_NOTES_FILE must be provided}
git log --oneline --decorate --max-count=1000 master > /tmp/gitlog_master
(( release_count=0 ))
readarray lines < /tmp/gitlog_master
for line in "${lines[@]}"
do
if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]]
then release_count++
if (( release_count>=2 ))
then break
fi
fi
then break
elif [[ $line =~ \[maven-release-plugin\] ]]
then continue