2022-10-06 21:35:40 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2024-03-23 15:54:22 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-FileCopyrightText: 2022 Álvaro Brey <alvaro@alvarobrey.com>
|
|
|
|
# SPDX-License-Identifier: MIT
|
2022-10-06 21:35:40 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
## This file is intended to be sourced by other scripts
|
|
|
|
|
|
|
|
|
|
|
|
function err() {
|
|
|
|
echo >&2 "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function curl_gh() {
|
|
|
|
if [[ -n "$GITHUB_TOKEN" ]]
|
|
|
|
then
|
|
|
|
curl \
|
|
|
|
--silent \
|
|
|
|
--header "Authorization: token $GITHUB_TOKEN" \
|
|
|
|
"$@"
|
|
|
|
else
|
|
|
|
err "WARNING: No GITHUB_TOKEN found. Skipping API call"
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|