chore: git cache cleanup

This commit is contained in:
GitHub Actions
2026-03-04 18:34:49 +00:00
parent c32cce2a88
commit 27c252600a
2001 changed files with 683185 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
#!/bin/sh
echo '{"apps":{}}'

View File

@@ -0,0 +1,14 @@
#!/bin/sh
if [ "$1" = "version" ]; then
echo "v2.0.0"
exit 0
fi
if [ "$1" = "fmt" ]; then
exit 0
fi
if [ "$1" = "adapt" ]; then
# Return a host that conflicts with existing (conflict.example.com)
echo "{\"apps\":{\"http\":{\"servers\":{\"srv0\":{\"routes\":[{\"match\":[{\"host\":[\"conflict.example.com\"]}],\"handle\":[{\"handler\":\"reverse_proxy\",\"upstreams\":[{\"dial\":\"192.168.1.100:9000\"}]}]}]}}}}}"
exit 0
fi
exit 1

View File

@@ -0,0 +1,6 @@
#!/bin/sh
if [ "$1" = "version" ]; then
echo "v2.0.0"
exit 0
fi
exit 1

View File

@@ -0,0 +1,25 @@
#!/bin/sh
# Fake caddy that fails fmt but succeeds on adapt (for testing normalization fallback)
if [ "$1" = "version" ]; then
echo "v2.0.0"
exit 0
fi
if [ "$1" = "fmt" ]; then
# Simulate fmt failure
echo "Error: fmt failed" >&2
exit 1
fi
if [ "$1" = "adapt" ]; then
DOMAIN="example.com"
if [ "$2" = "--config" ]; then
# Read domain from first line of file
DOMAIN=$(head -1 "$3" | awk '{print $1}')
fi
echo "{\"apps\":{\"http\":{\"servers\":{\"srv0\":{\"routes\":[{\"match\":[{\"host\":[\"$DOMAIN\"]}],\"handle\":[{\"handler\":\"reverse_proxy\",\"upstreams\":[{\"dial\":\"localhost:8080\"}]}]}]}}}}}"
exit 0
fi
exit 1

View File

@@ -0,0 +1,35 @@
#!/bin/sh
# Fake caddy that handles fmt (formats single-line to multi-line) and adapt
if [ "$1" = "version" ]; then
echo "v2.0.0"
exit 0
fi
if [ "$1" = "fmt" ] && [ "$2" = "--overwrite" ]; then
# Read the file content
CONTENT=$(cat "$3")
# Check if it looks like a single-line Caddyfile
if echo "$CONTENT" | grep -q '{ .* }$'; then
# Simulate formatting: write formatted content back to the file
DOMAIN=$(echo "$CONTENT" | sed 's/ {.*//')
cat > "$3" << EOF
${DOMAIN} {
reverse_proxy localhost:8080
}
EOF
fi
exit 0
fi
if [ "$1" = "adapt" ]; then
DOMAIN="example.com"
if [ "$2" = "--config" ]; then
# Read domain from first line of file
DOMAIN=$(head -1 "$3" | awk '{print $1}')
fi
echo "{\"apps\":{\"http\":{\"servers\":{\"srv0\":{\"routes\":[{\"match\":[{\"host\":[\"$DOMAIN\"]}],\"handle\":[{\"handler\":\"reverse_proxy\",\"upstreams\":[{\"dial\":\"localhost:8080\"}]}]}]}}}}}"
exit 0
fi
exit 1

View File

@@ -0,0 +1,15 @@
#!/bin/sh
if [ "$1" = "version" ]; then
echo "v2.0.0"
exit 0
fi
if [ "$1" = "adapt" ]; then
# Read the domain from the input Caddyfile (stdin or --config file)
DOMAIN="example.com"
if [ "$2" = "--config" ]; then
DOMAIN=$(cat "$3" | head -1 | tr -d '\n')
fi
echo "{\"apps\":{\"http\":{\"servers\":{\"srv0\":{\"routes\":[{\"match\":[{\"host\":[\"$DOMAIN\"]}],\"handle\":[{\"handler\":\"reverse_proxy\",\"upstreams\":[{\"dial\":\"localhost:8080\"}]}]}]}}}}}"
exit 0
fi
exit 1