Commit 0bf85a5b authored by cmosh's avatar cmosh

Bump version number

parent 961f7ef8
......@@ -515,13 +515,13 @@ cmd_review() {
}' \
"https://api.github.com/repos/$OWNER/$REPO/pulls")
echo "Pull request created on github please inform the code reviewer by mentioning them in the comments"
# if [ "$GITHUB_REQUEST" -gt 300 ]
# then
# echo "Failed to create pull request"
# else
# fi
if [ "$GITHUB_REQUEST" -gt 300 ]
echo "Failed to create pull request"
then
echo "Pull request created on github please inform the code reviewer by mentioning them in the comments"
else
fi
fi
......@@ -539,24 +539,26 @@ cmd_review() {
"body":"'"$USER_NAME"' is asking for code review. Total time taken:'"$FINALTIME"' expected time was '"$TIME_EXPECTED"' hour(s), Time spent on breaks was '"$TOTAL_TIME_OFF"' -- message by gitflow"
}' "https://gitlab.com/api/v3/projects/$OWNER%2F$REPO/merge_requests")
echo "Pull request created on gitlab please inform the code reviewer by mentioning them in the comments"
# if [ "$GITLAB_REQUEST" -gt 300 ]
# then
# echo "Failed to create merge request"
# else
# echo "Merge request created succesfully"
# fi
# fi
if [ "$GITLAB_REQUEST" -gt 300 ]
then
echo "Failed to create merge request"
else
echo "Merge request created on gitlab please inform the code reviewer by mentioning them in the comments"
fi
fi
git pause
git checkout $DEVELOPMENT_BRANCH
git pull
echo
echo "Summary of actions:"
echo "- A new remote branch '$BRANCH' was created"
echo "- The local branch '$BRANCH' was configured to track the remote branch"
echo "- You are now on branch '$BRANCH'"
echo "- You are now on branch '$DEVELOPMENT_BRANCH'"
echo
}
......
......@@ -36,7 +36,7 @@
# policies, either expressed or implied, of Vincent Driessen.
#
GITFLOW_VERSION=0.4.2-pre
GITFLOW_VERSION=0.4.4
usage() {
echo "usage: git flow version"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment