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 77857fe commit 3fb7023Copy full SHA for 3fb7023
.github/workflows/traffic-reporting.yml
@@ -59,6 +59,12 @@ jobs:
59
run: |
60
echo "📤 Sending traffic data to reporting endpoint..."
61
62
+ # Validate that REPORTING_URL is set
63
+ if [ -z "${REPORTING_URL}" ]; then
64
+ echo "❌ Error: REPORTING_URL environment variable is not set. Please configure vars.REPORTING_POST_URL."
65
+ exit 1
66
+ fi
67
+
68
# Send POST request with API key header, reading file directly
69
HTTP_STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
70
-X POST \
0 commit comments