We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c2e1de commit 5443cfcCopy full SHA for 5443cfc
gh-scripts/clear-cache.sh
@@ -1,9 +1,10 @@
1
#!/bin/bash
2
3
-GH_TOKEN=
4
-GH_ONWER=
5
-GH_REPO=
6
-
+# -------------------------------------------------------------------------------------------------
+clear_gh_cache() {
+local GH_TOKEN=$1
+local GH_ONWER=$2
7
+local GH_REPO=$3
8
9
while :; do
10
JSON_OUTPUT=$(curl \
@@ -31,4 +32,14 @@ while :; do
31
32
# Waiting time between iterations to avoid rate limiting
33
sleep 5
34
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
45
0 commit comments