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 84ea1e5 commit 14268ecCopy full SHA for 14268ec
.github/workflows/update-docs-webhook.yaml
@@ -25,7 +25,8 @@ jobs:
25
- name: Call deployment webhook
26
env:
27
WEBHOOK_URL: ${{ secrets[matrix.webhooks.url_secret_name] }}
28
+ HTTP_METHOD: ${{ matrix.webhooks.http_method }}
29
run: |
- if curl -X ${{ matrix.webhooks.http_method }} --silent --fail --show-error "$WEBHOOK_URL" > /dev/null; then
30
+ if curl -X "$HTTP_METHOD" --silent --fail --show-error "$WEBHOOK_URL" > /dev/null; then
31
echo "Triggered successfully"
32
fi
0 commit comments