Andy Scherzinger c5b17f4de9
Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-03-29 17:33:39 +01:00

16 lines
395 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: GPL-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