mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-12 06:17:27 -08:00
synchronize makefile.common for community (#7108)
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
parent
002b391dfc
commit
b3cf6ef332
|
@ -11,7 +11,7 @@ branch="makefile_common"
|
|||
commit_msg="makefile: update Makefile.common with newer version"
|
||||
pr_title="Synchronize Makefile.common from prometheus/prometheus"
|
||||
pr_msg="Propagating changes from master Makefile.common located in prometheus/prometheus."
|
||||
org="prometheus"
|
||||
orgs="prometheus prometheus-community"
|
||||
|
||||
GITHUB_TOKEN="${GITHUB_TOKEN:-}"
|
||||
if [ -z "${GITHUB_TOKEN}" ]; then
|
||||
|
@ -28,6 +28,8 @@ source_checksum="$(sha256sum Makefile.common | cut -d' ' -f1)"
|
|||
tmp_dir=$(mktemp -d)
|
||||
trap "rm -rf ${tmp_dir}" EXIT
|
||||
|
||||
for org in $orgs
|
||||
do
|
||||
# Iterate over all repositories in ${org}. The GitHub API can return 100 items
|
||||
# at most but it should be enough for us as there are less than 40 repositories
|
||||
# currently.
|
||||
|
@ -68,3 +70,4 @@ curl --retry 5 --silent -u "${git_user}:${GITHUB_TOKEN}" https://api.github.com/
|
|||
fi
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue