-
Notifications
You must be signed in to change notification settings - Fork 0
/
restic-refresh.sh
executable file
·79 lines (68 loc) · 2.18 KB
/
restic-refresh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
# set -eou pipefail
SCRIPT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}"))
SCRIPT_NAME=$(basename "${BASH_SOURCE[0]}")
OLD_VER=0.16.4
NEW_VER=0.17.1
GITHUB_USER=${GITHUB_USER:-1gtm}
PR_BRANCH=restic_${NEW_VER} # -$(date +%s)
COMMIT_MSG="Use restic ${NEW_VER}"
REPO_ROOT=/tmp/kubedb-repo-refresher
repo_uptodate() {
# gomodfiles=(go.mod go.sum vendor/modules.txt)
gomodfiles=(go.sum vendor/modules.txt)
changed=($(git diff --name-only))
changed+=("${gomodfiles[@]}")
# https://stackoverflow.com/a/28161520
diff=($(echo ${changed[@]} ${gomodfiles[@]} | tr ' ' '\n' | sort | uniq -u))
return ${#diff[@]}
}
refresh() {
echo "refreshing repository: $1"
rm -rf $REPO_ROOT
mkdir -p $REPO_ROOT
pushd $REPO_ROOT
git clone --no-tags --no-recurse-submodules --depth=1 [email protected]:$1.git
name=$(ls -b1)
cd $name
git checkout -b $PR_BRANCH
sed -i "s|RESTIC_VER\([[:space:]]*\):= ${OLD_VER}|RESTIC_VER\1:= ${NEW_VER}|g" Makefile
if repo_uptodate; then
echo "Repository $1 is up-to-date."
else
git add --all
if [[ "$1" == *"stashed"* ]]; then
git commit -a -s -m "$COMMIT_MSG" -m "/cherry-pick"
else
git commit -a -s -m "$COMMIT_MSG"
fi
git push -u origin HEAD -f
hub pull-request \
--labels automerge \
--message "$COMMIT_MSG" \
--message "Signed-off-by: $(git config --get user.name) <$(git config --get user.email)>" || true
# gh pr create \
# --base master \
# --fill \
# --label automerge \
# --reviewer tamalsaha
fi
popd
}
if [ "$#" -ne 1 ]; then
echo "Illegal number of parameters"
echo "Correct usage: $SCRIPT_NAME <path_to_repos_list>"
exit 1
fi
if [ -x $GITHUB_TOKEN ]; then
echo "Missing env variable GITHUB_TOKEN"
exit 1
fi
# ref: https://linuxize.com/post/how-to-read-a-file-line-by-line-in-bash/#using-file-descriptor
while IFS=, read -r -u9 repo cmd; do
if [ -z "$repo" ]; then
continue
fi
refresh "$repo" "$cmd"
echo "################################################################################"
done 9<$1