nextcloud-android/scripts/analysis/getBranchBase.sh
Andy Scherzinger a619cdbef8 Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-03-29 19:24:09 +01:00

15 lines
396 B
Bash
Executable file

#!/bin/bash
# SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-FileCopyrightText: 2016 Tobias Kaminsky <tobias@kaminsky.me>
# SPDX-License-Identifier: AGPL-3.0-or-later
PR_NUMBER=$1
source scripts/lib.sh
if [ -z "${PR_NUMBER}" ] ; then
echo "master";
else
curl_gh "https://api.github.com/repos/nextcloud/android/pulls/${PR_NUMBER}" | jq .base.ref
fi