Skip to content

Commit 5443cfc

Browse files
Update clear-cache.sh
1 parent 3c2e1de commit 5443cfc

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

gh-scripts/clear-cache.sh

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
22

3-
GH_TOKEN=
4-
GH_ONWER=
5-
GH_REPO=
6-
3+
# -------------------------------------------------------------------------------------------------
4+
clear_gh_cache() {
5+
local GH_TOKEN=$1
6+
local GH_ONWER=$2
7+
local GH_REPO=$3
78

89
while :; do
910
JSON_OUTPUT=$(curl \
@@ -31,4 +32,14 @@ while :; do
3132
# Waiting time between iterations to avoid rate limiting
3233
sleep 5
3334
done
35+
}
36+
37+
# -------------------------------------------------------------------------------------------------
38+
main() {
39+
local GL_GH_TOKEN=<GH_TOKEN>
40+
clear_gh_cache $GL_GH_TOKEN <GH_ONWER> <GH_REPO>
41+
}
42+
# -------------------------------------------------------------------------------------------------
43+
44+
main
3445

0 commit comments

Comments
 (0)