Merge branch 'releases/CGAL-4.14-branch' into releases/CGAL-5.0-branch

This commit is contained in:
Laurent Rineau
2020-07-03 16:20:55 +02:00
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
: ${GITHUB_HUB:=$(which hub)}
if ! [ -x "${GITHUB_HUB}" ]; then
echo 'Needs Github hub: https://github.com/github/hub' >&2
exit 1
fi
for pr in $(python3 ./Scripts/developer_scripts/list_pull_requests.py "$1" --unmerged); do
if ! hub merge $pr; then
echo $p;
break
fi
done