We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a566c12 commit 829fb33Copy full SHA for 829fb33
.github/workflows/validate_json.yml
@@ -29,7 +29,8 @@ jobs:
29
unreachable_urls=() # 初始化一个数组用于记录不可访问的 URL
30
31
for repo in $repos; do
32
- if curl --output /dev/null --silent --head --fail "$repo"; then
+ sleep 1
33
+ if curl --output /dev/null --silent --head --fail --retry 3 "$repo"; then
34
echo "Repository $repo is accessible."
35
else
36
echo "Repository $repo is NOT accessible."
0 commit comments