mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
updated nosqlbench invite link
This commit is contained in:
parent
96752aeebb
commit
77fdc93a23
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user