echo"This repository doesn't match the provided GitLab instance"
exit 4
fi
# shellcheck disable=SC2001
path="$(echo"$path" | sed-e's,\..*,,g')"
gitlab 200 GET projects?search="$path"
PRJID=$(echo"$result" | jq -r .[0]."id")
if[[$(isNumeric "$PRJID")-eq 1 ]];then
echo"Can not find project ID"
exit 5
fi
# Create MR
gitlab 200 POST projects/"$PRJID"/merge_requests --data"source_branch=$SOURCEBRANCH"--data"target_branch=$TARGETBRANCH"--data"title=Merging $SOURCEBRANCH into $TARGETBRANCH"
MRID=$(echo"$result" | jq -r ."iid")
if[[$(isNumeric "$MRID")-eq 1 ]];then
echo"Can not create merge request"
exit 6
fi
echo"Created MR at $(echo"$result" | jq -r ."web_url")"
# Merge MR
gitlab 200 PUT projects/"$PRJID"/merge_requests/"$MRID"/merge --data"should_remove_source_branch=0"